                                        /* DECO */
.s1__h1{
  font-weight: 400;
}
.h1__fe, .h1__w, .h1__g, .h1__svg{
  font-family: "Alana";
  color: var(--red);
  font-weight: normal;
  display: inline-block;
}
.h1__fe{
  font-family: "Alana-700"
}
.s1__myphoto{
  position: relative;
  clip-path: url(#myClip);
}
.myphoto__blob__inner{
  fill: #eee;
}
.myphoto__container{
  position: absolute; top:0; left:0;
  height: 100%; width: 100%;
}
.myphoto__img{
  height: 100%;
  aspect-ratio: 1/1;
}
                                        /* LAYOUT */
.s1__h1{grid-area:h1}
.s1__p{grid-area:p; align-self: center;}
.s1__btns{grid-area:btns}
.s1__myphoto{grid-area:pic}
.s1{
  display: grid;
  font-size: clamp(16px, 1.2vw, 40px);
  padding: 0 7vw 7vw 7vw;
}
.h1__fe{
  font-size: 150%;
}
.h1__g{
  font-size: 130%;
}
.s1__myphoto{
  height: 55ex;
  width: 55ex;
  margin-top: 1ex;
}
/* blob size */
#myClip, .myphoto__blob__inner{
  transform: scale(1.1);
}
#myClip{
  transform: scale(1.1) translateY(-100%);
}
                                        /* MEDIA */
@media(max-width:499px){
  .s1{
    padding-top: 7vw;
    height: calc(100vh - 30px - 6vw);
    min-height: 40vw;
  }
  .s1__h1{
    font-size: 130%;
  }
  .s1__btn{
    width:100%;
    margin-top: 2ex;
  }
  .s1__myphoto{
    width: 31vh;
    height: 31vh;
  }
  .myphoto__blob__inner{
    fill: var(--teal);
  }
}
@media(min-width:500px){
  .s1__btn{
    width: 44%;
  }
  .s1__btn--first{float:left}
  .s1__btn--second{float:right}
}
@media(min-width:500px) and (max-width:999px){
  .s1__myphoto{
    width: 36vh;
    height: 36vh;
  }
  
}
@media(max-width:999px){
  .s1{
    grid-template-areas: 'h1' 'pic' 'p' 'btns';
  }
  .s1__h1{
    line-height: 2.7ex;
  }
  .s1__myphoto{
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1000px){
  .s1{
    grid-template-areas: 
    '. pic'
    'h1 pic'
    'p pic'
    'btns pic'
    '. pic'
    ;
    grid-template-columns: 4fr 1fr;
    grid-template-rows: 1fr 3fr 3fr 3fr 1fr;
  }
  .s1__btns{
    margin-right: 5vw;
  }
  .s1__h1--de{
    line-height: 3ex;
  }
  .h1__span, .h1__p{
    display: block;
  }
  .h1__g, .h1__svg{
  vertical-align: top;
  }
  .h1__g, .h1__svg{
  vertical-align: unset;
  }
}
@media(max-width: 2500px) and (max-height: 1300px){
  .s1{
    height: calc(100vh - 30px - 6vw - 0.9ex);
    min-height: 40vw;
    align-items: center;
  }
}
                                        /* END */
@font-face {
  font-family: Alana-700;
  src: url(../tools/Alana-700.ttf);
}