 /* NOTES */

 /* 1% = 0.01em
    5%. = 0.05em
    10% = 0.1em
    50% = 0.5em
    100% = 1em */


/*Typographies*/

.cormorant {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}


.playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.raleway {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

/* BODY */

*{
    box-sizing: border-box;
}

body{
    background-color: #f7f7f7;
   color: #720606;
   font-family: "Playfair Display";
   margin: 0;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
}

/* HEAD */

header{
    height: 7vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: solid 1px;
    border-color: #720606;
}

#banner-top{
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 14px;
    font-family: "Raleway";
    font-weight: 350;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    width: 100%;
    height: 100%;
    
}

/* MAIN */

main{
    height: 86vh;
    display: flex;
    justify-content: center;
    align-items:  center;
}

#container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

#praestia-logo{
    height: 48px;
    margin-bottom: 20px;
}

#text-secundary{
    font-family: "Raleway";
    text-transform: uppercase;
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 0.1em;
    margin: 0;
}

#main-text-bloc{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 10px;
}

#main-text{
    font-family: "Playfair Display";
    text-align: center;
    text-transform: uppercase;
    font-weight: 420px;
    letter-spacing: 0.02em;
    font-size: 72px;
    margin: 0px;
}

/* CONTACT AND SOCIAL MEDIA */

#mail{
    background-color: #720606;
    color: #f7f7f7;
    font-family: "Raleway";
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 15px 10px 15px;
    border-radius: 5px;
    font-weight: 450px;
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-top: 50px;
}

#mail:hover{
    background-color: #f7f7f7;
    color: #720606;
    font-weight: 300;
    border-radius: 5px;
    border: #720606 solid 1.5px;
}

#follow-us{
    font-family: "Raleway";
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400px;
    letter-spacing: 0.1em;
}

#icon-bloc{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* FOOT */

footer{
    height: 7vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: solid 1px;
    border-color: #720606;
}

#banner-bottom{
    display: flex;
    justify-content: space-between; 
    align-items: center;
    width: 100%;
    height: 50%;
    text-transform: uppercase;
    font-family: "Raleway";
    letter-spacing: 0.1em;
    font-weight: 350;
    font-size: 14px;
}

/* MEDIAQUERIES AND BREAKPOINTS */

@media screen and (max-width: 1024px){
  #main-text{
    font-size: 62px;
  }
}

@media screen and (max-width: 768px){
  #banner-top{
    font-size: 12px;
  }

  #praestia-logo{
    height: 40px;
  }

  #text-secundary{
    font-size: 14px;
  }

  #main-text{
    font-size: 32px;
  }

  #mail{
    font-size: 12px;
  }

  #follow-us{
    font-size: 10px;
  }

  #banner-bottom{
    font-size: 12px;
  }
}
