*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

body{
    background-color: black;
    }

.container{
    width: 90%;  
    max-width: 500px;
    margin: 0 auto;  
    padding: 10px;
    font-family: "Borel", cursive;
    font-weight: 400;
    font-style: normal;
    color: yellow;
    padding: 58px;
    margin: auto;
}

.container p{
    text-align: center;
    font-size: larger;
}

.container h3{
    text-align: center;
    font-size: xx-large;
}

.details{
    width: 90%;      
    max-width: 500px; 
    margin: 0 auto;
    padding: 10px;
    text-align: center;
    font-family: "Borel", cursive;
    font-style: normal;
    border-radius: 20px;
    background-color: black;
    color: yellow;
}

.button{
    width: 100%;     
    margin: 5px 0;
    padding: 10px;
    border: 2px solid red;
    background-color: red;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    outline: none;
}

input{
    width: 100%;   
    margin: 5px 0;
    padding: 10px;
    font-family: "Borel", cursive;
    font-style: normal;
    color: black;
    background-color: yellow;
    border: 2px solid red;
    border-radius: 12px;
    outline: none;
}

 textarea{
    width: 100%;   
    margin: 5px 0;
    padding: 10px;
    text-align: left;
    font-family: "Borel", cursive;
    font-style: normal;
    color: black;
    background-color: yellow;
    border: 2px solid red;
    border-radius: 6px;
    outline: none;
 }

 .img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    filter: brightness(50%);
 }

 input:focus {
  background-color: yellow;
  outline: none; 
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px yellow inset !important;
  -webkit-text-fill-color: black !important;
} 

.p{
    font-size: smaller;
}

h3, h2, p {
    font-size: calc(16px + 1vw); 

}






