@import url('https://fonts.googleapis.com/css2?family=Buda:wght@300&family=Krub:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ruluko&family=Tilt+Neon&family=Unna&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Tilt Neon", sans-serif;
    text-decoration: none;
    list-style: none;
}
nav
{
    height: 80px;
    background-color:bisque;
    width: 100%;
}
.span
{
    display: inline-block;
    justify-content: space-around;
    align-items: center;
    padding-top: 30px;
    font-size: 20px;
}
nav ul
{
    float: right;
    margin-right: 20px;
    padding-top: 20px;
}
nav ul li
{
    display: inline-block;
    line-height: 50px;
    margin: 0 5px;
}
nav ul li a
{
    color: #000;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    text-transform: capitalize;
}
a.active,a:hover
{
    background-color: rgb(255, 255, 255);
    transition: .5s;
}
header
{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    font-size: 3rem;
}
main
{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    height: 480px;
}
main h2
{
    font-size: 1.5rem;
    text-align: center;
    line-height: 40px;
}
footer {
    background-color:bisque;
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 1.5rem;
    padding: 10px;
    bottom: 0;
    width: 100%;
}
@media only screen and (max-width: 600px)
{
   header
   {
    font-size: 2.5rem;
    margin-top: 20px;
    height: 40px;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
   }
}