*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", serif;
    outline: none;
}
body{
    background: url("./img/b.jpg");
    background-size: cover;
}
.main{
    display: flex;
    justify-content: center;
}
.box{
    width: 700px;
    height: 700px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    text-transform: capitalize;
    backdrop-filter: blur(100px);
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: rgba(24, 3, 3, 0.24);
    transform: translate(-50%,-50%);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.box input{
    border: 2px solid grey;
    border-radius: 20px;
    color: black;
    font-size: 20px;
    background-color: grey;
    font-weight: bold;
    border: 2px solid black;
}
.box h3{
    color: black;
    font-weight: bold;
    gap: 20px;
}
.box p{
    color: black;
    font-weight: bold;
}
.box button{
    color: black;
    background-color: grey;
    border: 5px solid black;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}
.box button:hover{
    background-color: transparent;
    border: 3px solid black;
}
#res{
    color: white;
    font-weight: bold;
    font-size: 20px;
}
#res2{
    color: white;
    font-weight: bold;
    font-size: 20px;
}
#res3{
    color: white;
    font-weight: bold;
    font-size: 20px;
}
