.nameInp{
    border: 4px double violet;
    color: red;
    font-size: 36px;
    width: 200px;
    margin-bottom: 50px;
}

.nameInp:enabled {
    border: 4px dotted rgb(87, 255, 4);
}
.nameInp:disabled {
    border: 4px dotted rgb(255, 4, 4);
}

fieldset{
    display: flex;
    flex-direction: column;
}

.inputEmail:valid{
    border: 4px dotted rgb(87, 255, 4);
}

.inputEmail:invalid{
    border: 4px double rgb(255, 4, 4);
}



* { 
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    color: black;
}

ul{
    list-style: none;
}

a {
    text-decoration: none;
}

.header{
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
    background-color: yellowgreen;
    align-items: center;
}

.logo{
    font-family: "Bitcount Grid Double Ink", system-ui;
    font-size: 56px;
}

.navList{
    display: flex;
    gap: 30px;
    font-size: 24px;
}

main{
    display: flex;
    justify-content: center;
    padding-top: 250px;

}
.openModal{
font-size: 24px;
font-weight: 600;
width: 200px;
height: 100px;
border: 1px solid rgb(100, 249, 100);
border-radius: 10px;
background-color: rgb(100, 249, 100);
cursor: pointer;
}

.close{
    font-size: 28px;
    cursor: pointer;
}

.modal-content{
    display: flex;
    flex-direction: row-reverse;
    border: 1px solid black;
    width: 400px;
    height: 250px;
    margin: 250px auto 0 auto;
    border-radius: 10px;
    padding: 10px 30px;
    background-color: white;

}

.form{
    display: flex;
    flex-direction: column;
}

.btn{
margin-top: 20px;
font-size: 22px;
font-weight: 600;
width: 150px;
height: 80px;
border: 1px solid rgb(100, 165, 249);
border-radius: 10px;
background-color: rgb(100, 165, 249);
cursor: pointer;
}

.modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.3);
}

.ham{
    display: none;
    flex-direction: column;
    gap: 4px;
}

.ham span{
    width: 24px;
    height: 3px;
    background-color: black;
}

@media (max-width: 900px) {
    body {
        background-color: brown;
    }
}

@media (max-width: 700px) {
    body {
        background-color: rgb(42, 165, 83);
    }
}
@media (max-width: 650px) {
    .navList{
    display: flex;
    gap: 10px;
    font-size: 18px;
}
}

@media (max-width: 450px) {
    .ham{
        display: flex;
    }
    .navList{
    display: none;
}
}

.open{
    display: flex;
}