@font-face {
    font-family: alice;
    src: url(text-style/Alice.ttf) format('truetype');
}

body{
    background-image: url(pictures/1.jpg);
    width: 100%;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header, footer{
    height: 70px;
    width: 100%;
    
    align-content:center;
}

header{
    transform: translateY(-20px);
}
#burger-menu{
font-size:50px;
font-weight: 50;
margin-right: 10px;
}

input{
    visibility: hidden;
    position: absolute;

}
label{
    display: flex;
    top:5px;
    justify-self: right;
    margin-right: 30px;
    font-size:90px;
    z-index: 10;
    padding-left: 10px;
    visibility:hidden;
}
.burger-menu{
    display: flex; 
    justify-self: flex-end;
    height: 100px;
    width: 100vw;
    background-image: url(pictures/roses.jpg);
    background-size: contain; 
    background-position: center;

    z-index: 5;
    
    transform: translateY(-90px);
    transition: all 0.1s ease;
}

.vnetri {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 40px;
}

.logo {
    height: 70px;
    width: 70px;
    flex-shrink: 0;
}

.logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.menu-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-links a{
    color: rgb(62, 5, 62);
     transition: font-size 1s ease;
}
.menu-links a:hover{
    font-size: 25px;
}
.menu-links span{
    align-self: center;
    padding: 0 20px 0 20px;
    font-size: 20px;
}

main{
    flex: 1;
    display: grid;
    grid-row-gap: 15px;
    height: max-content;
    margin-top: 35px;
}

.forma{
    display: grid;
    justify-self: center;
    margin-top: 10px;
    grid-template-columns: repeat(2,50%);
    grid-template-rows: repeat(3,1fr);
    height:60vh;
    width:80vw;
}

.text{
    grid-column: 1/2;
    grid-row:1/3 ;
}
main label,input{
    font-size:20px;
    visibility: visible;
}

 .email{
    justify-self: center;
    align-self: center;
    padding-right: 60px;
}

.forma label{
    font-size:35px;
    font-family: 'alice';
    margin-right: 20px;
    width: auto;
    text-align: center;
} 
.rating{
display:block;
}
.rating label{
    display: block;
    justify-self: center;
}
.stars{
    justify-self: center;
}

.button1, .button2{
    display: flex;
    width: 100%;
    text-align: center;
    text-justify: center;
    align-content: center;
    justify-content: center;
}

.button1 button, .button2 button{
    height: 100px;
    width:300px;
    font-family: 'alice';
    font-size: 25px;
    border-radius: 15px;
    background-color: rgb(255, 241, 223);
    border:1px solid rgb(117, 109, 109);
    cursor: pointer;
}

form{
   height:60vh;
    width:80vw; 
}
textarea {
  display: block;
  width: 45%;
  height: 60%;
  font-size: 20px;
}

a{
    text-decoration: none;
}
footer{
    height: 150px;
    background-color: white;
    color: #823845;
    text-align: center;
    font-size: 18px;
    margin-top: 30px;
    transform: none;
}
