Всем привет! Сделала на 100%. Но мне кажется logo по середине можно разместить и по другому. Я подогнала с помощью left и top. Для всех div у меня position: absolute;
вот мой код:
Сводка 
html {
body {
.scene {
div {
/* горизонтальные элементы */
.h2 {
.h1 {
.h3 {
/* вертикальные элементы */
.v1 {
.v3 {
.v4 {
.v5 {
.v6 {
/* уголки */
}
.corner-bottom {
/* лого */
 
             
            
              1 лайк 
            
           
          
            
              
                Miro  
              
                  
                    03.Январь.2022 14:06:56
                   
                  2 
               
             
            
              100% на relative
html {
  padding: 0;
}
body {
  margin: 0;
  padding: 20px;
}
.scene {
  position: relative;
  width: 260px;
  height: 260px;
  background: none;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
}
div {
  display: inline-block;
  background-color: white;
}
/* горизонтальные элементы */
.h {
  width: 50px;
  height: 10px;
  
}
.h1 {
 position: relative;
 top: 130px;
 left: 80px; 
}
.h2 {
 position: relative;
 top: 150px;
 left: -34px;
}
.h3 {
  width: 40px;
  position: relative;
  top: 170px;
 left: 92px;
}
/* вертикальные элементы */
.v {
  width: 10px;
  height: 50px;
  position: relative;
  top: 170px;
  left: -132px;
}
.v2 {
  position: relative;
  left: -106px;
  
} 
.v3 {
  position: relative;
  left: -79px;
  
} 
.v4 {
  position: relative;
  left: -53px;
  
} 
.v5 {
  position: relative;
  left: -27px;
  
} 
.v6 {
  position: relative;
  left: -21px;
  
} 
/* уголки */
.corner-top {
  background: none;
  border: 15px solid white;
  border-top-width: 20px;
  border-top-color: transparent;
  border-bottom-width: 0;
  position: relative;
  top: 70px;
  left: 150px;
}
.corner-bottom {
  background: none;
  border: 15px solid transparent;
  border-top-width: 20px;
  border-top-color: white;
  border-bottom-width: 0;
  position: relative;
  top: 90px;
  left: 116px;
}
/* лого */
.logo {
  width: 64px;
  height: 64px;
  background-image: url("logo.png");
  background-repeat: no-repeat;
  background-color: transparent;
  position: relative;
  top: 24px;
  left: 19px;
} 
            
              
           
          
            
            
              100% на абсолюте)
html {
body {
.scene {
div {
/* горизонтальные элементы */
.h.h2 {
.h.h3 {
/* вертикальные элементы */
.v.v2 {
.v.v3 {
.v.v4 {
.v.v5 {
.v.v6 {
/* уголки */
.corner-bottom {
/* лого */
             
            
              
           
          
            
            
              Я сделала так. 100%
html {
body {
.scene {
div {
/* горизонтальные элементы */
.h2 {
.h3 {
/* вертикальные элементы */
.v2 {
.v3 {
.v4 {
.v5 {
.v6 {
/* уголки */
.corner-bottom {
/* лого */
             
            
              
           
          
            
            
              Сделал таким образом, вроде тоже на 100% зашло
body {
.scene {
div {
             
            
              
           
          
            
            
              /* горизонтальные элементы */
}
.h3 {
/* вертикальные элементы */
}
.corner-bottom {
/* лого */
             
            
              
           
          
            
              
                olesja  
              
                  
                    20.Ноябрь.2022 19:42:06
                   
                  9 
               
             
            
              Благодаря этому испытанию я отлично поняла как использовать position: absolute, и так и не поняла, как - position: relative.