*{
   margin: 0;
   padding: 0;
   
}

a{
    text-decoration: none;
    color: white;
}


 /* Font */
.sofia-regular {
    font-family: "Sofia", cursive;
    font-weight: 400;
    font-style: normal;
  }

  .lilita-one-regular {
    font-family: "Lilita One", sans-serif;
    font-weight: 400;
    font-style: normal;
  }  
  
.white-txt{
    color: white;
}

.txt-glow-white{
    text-shadow:1px 1px 10px #fff, 1px 1px 10px #ccc;
}

/* end of of font class */

    /* Header margin  */
/* margin: 10px 20px; */

body{
    width: 100%;
    height: 100vh;
}

header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.767);
    margin: 10px 20px;
}

.btn-header{
    transition: transform 0.2s ;
}

.btn-header:hover{
  border-bottom: 2px solid rgba(255, 255, 255, 1);
  transform: scale(1.2);
  
}

.header-right{
    display: flex;
    flex-direction: row;
    width: 30%;
    justify-content: space-between;
    font-size: large;
    


}



.main-body-container-photo{
    min-height: 100%;
    width: 100%;
    background-image: url(../img/adrianna-geo-1rBg5YSi00c-unsplash.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    opacity: 0.9;
    display: flex;
    flex-direction: column;
}