@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);
    text-align: center;
    width: 80%;
    height: 11%;
    margin: auto;
    font-size: 3rem;
    font-family: 'Merienda', cursive;
    font-weight: bolder;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: var(--shadow);
}

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

section h2{
    font-weight: bolder;
    margin: 2% 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;
}

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);
}

span{
    font-weight: bolder;
    margin-top: 2%;
    font-size: 1.5rem;
    font-family: 'Merienda', cursive;
}

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

footer ul{
    display: flex;
    margin: auto;
    list-style: none;
    align-items: center;
    justify-content: space-around;
    width: 20%;
    height: 55%;
    margin-top: 0.7%;
}

footer a{
    text-decoration: none;
    color: black;
    font-weight: bold;
}
