@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@500&family=Work+Sans:ital,wght@500;700&display=swap');

:root{
    --primary-color: #FCE072;
    --shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

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

body{
    font-family: "Work Sans", sans-serif;
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    background-color:var(--primary-color);
}

header{
    background-color: black;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    width: 80%;
    height: 11%;
    margin: auto;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    justify-content: space-between;
    box-shadow: var(--shadow);
}

h1{
    cursor: pointer;
    margin:0% 0% 0.5% 2.3%;
    font-family: 'Merienda', cursive;
}

header ul{
    display: flex;
    list-style: none;
    width: 53%;
}

header li{
    margin: 3.2%;
    font-weight: bold;
    cursor: pointer;
}

section{
    width: 70%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 79%;
}

section h2{
    font-weight: bolder;
    margin: 4% 0% 3% 0%;
    font-size: 2rem;
    border-bottom: 3px solid;
}

section div{
    font-size: 1.5rem;
    margin-bottom: 1.5%;
    font-weight: bold;
}

section input{
    height: 7%;
    width: 30%;
    margin-bottom: 3.5%;
    border-radius: 10px;
    outline: none;
    padding: 1%;
    font-size: 1.3rem;
    border: 1px solid;
    box-shadow: var(--shadow);
}

section input::-webkit-inner-spin-button{
    display: none;
}

h4{
    margin-bottom: 3%;
}

section label{
    display: block;
}

section li p{
    margin-bottom: 2%;
}

section li input{
    width: 5%;
    cursor: pointer;
    box-shadow: none;
    accent-color: black;
}

button{
    padding: 1%;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 20px;
    background-color: black;
    box-shadow: var(--shadow);
    color: var(--primary-color);
}

button:hover{
    transform: scale(1.03);
}

footer{
    height: 10%;
    text-align: center;
}

footer ul{
    display: flex;
    margin: auto;
    list-style: none;
    justify-content: space-around;
    width: 13%;
    height: 55%;
    margin-top: 0.7%;
    padding-left: 0.5%;
}

footer img{
    height: 100%;
    width: 100%;
}

.logo{
    height: 80%;
    width: 100%;
    margin-top: 15%;
}

span{
    font-weight: bolder;
    margin: 1.7% 0% 2.5% 0%;
    font-size: 1.5rem;
    font-family: 'Merienda', cursive;
}