
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: white;
    color: black;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

html,body{
    width: 100%;
    height: 100%;
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
    /* background-color: rgb(29, 37, 47); */
}
header{
    margin-top: 3vw;
    display: flex;
    justify-content: space-around;
    gap: 40vw;
}
.icon{
    display: none;
}
header img{
    height: 50px;
    width: 50px;
    border-radius: 50%;
}
nav{
    display: flex;
    align-items: center;
    
}
nav a{
    text-decoration: none;
    margin: 14px;
    font-size: 18px;
    /* color: #fff; */
}
nav a:hover{
    cursor: pointer;
}
.material-symbols-outlined{
    display: none;
}
form{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 6vw;
}
form select{
    height: 3vw;
    width: 20vw;
    margin: 12px;
    font-size: 18px;
    border-radius: 9px;
    padding-left: 12px;
    border: 1px solid grey;
    background-color: rgb(243 243 243);
}
form select:hover{
    cursor: pointer;
}

form input{
    height: 3vw;
    width: 8vw;
    margin: 12px;
    font-size: 18px;
    border-radius: 9px;
    padding-left: 12px;
    color: rgb(0, 204, 255);
    background-color: black;
}
form input:hover{
    cursor: pointer;
}
main{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4vw;
}

main img{
    height: 18vw;
    width: 18vw;
    margin-top: 1vw;
    margin-bottom: 1vw;
    border-radius: 15px;
}

.title{
    font-size: 2vw;
    text-align: center;
    /* color:white; */
    font-weight:900;
}
.info{
    text-align: center;
    font-size: 1.2vw;
    font-weight: 500;
}

.info button{
    height: 2vw;
    margin-top: 8px;
    width: 6vw;
    font-size: 18px;
    font-weight: 500;
    background-color: #3296dd;
    color: black;
    border-radius: 4px;
    border: none;
}

@media (max-width:600px) {
    body{
        flex-direction: column;
    }
    header{
        margin-top: 15vw;
        display: flex;
        justify-content: space-around;
        gap: 25vw;
        align-items: center;
        
    }
    nav{
        display: none;
    }
    .icon{
        display: block;
        color: black;
    }
    form{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 26vw;
    }
    form select{
        height: 12vw;
        width: 72vw;
        margin: 10px;
        font-size: 20px;
        /* font-weight: 400; */
        border-radius: 9px;
        padding-left: 8px;
        border: 1px solid grey;
        background-color: rgb(243 243 243);
    }
    form select:hover{
        cursor: pointer;
    }
    
    form input{
        height: 10vw;
        width: 25vw;
        margin: 14px;
        font-size: 17px;
        text-align: center;
        border-radius: 9px;
        color: rgb(0, 204, 255);
        background-color: black;
    }
    main{
        display: flex;
        flex-direction: column;
        align-items: center;
    
    }
    
    main img{
        height: 55vw;
        width: 55vw;
        margin-top: 1vw;
        margin-bottom: 1vw;
        border-radius: 15px;
    }
    
    .title{
        font-size: 7vw;
        text-align: center;
        /* color: white; */
        font-weight: 500;
        margin-top: 7vw;
    }
    .info{
        text-align: center;
        font-size: 5.2vw;
    }
    
    .info button{
        height: 10vw;
        margin-top: 8px;
        width: 18vw;
        font-size: 20px;
        font-weight: 500;
        background-color: #3296dd;
        color: black;
        border-radius: 4px;
        border: none;
    }

}

