* { 
    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;
}

.openModal:hover{
    background-color: darkturquoise;
    font-size: 30px;
}

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

.modal-content{
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    border: 1px solid black;
    width: 400px;
    height: 350px;
    margin: 250px auto 0 auto;
    border-radius: 10px;
    padding: 10px 30px;
    background-color: rgb(131, 230, 200);
    font-family: "Cherry Cream Soda", system-ui;
    justify-content: center;
}

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

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

.btn:hover{
    background-color: darkorchid;
    width: 160px;
    height: 80px;
}

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

.cross{
    position: absolute;
    top: 0;
    right: 0;
}