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

@font-face{
    font-family: "MyNerdFont";
    src: url("Font/0xProtoNerdFont-Regular.ttf") format("truetype");
}

body{
    background-color: white;
    font-family: 'MyNerdFont', monospace;
}

body p{
    padding: 1rem;
}

nav{
    /*background-color: rgba(255,255,255,0.8); */
    border-bottom: 1px solid #ccc;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

nav ul{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1rem;
}

nav div a{
    color: #ffffff;
    width: 100%;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'MyNerdFont', monospace;
    background-color: #ff0000;
    text-decoration: none;
}

nav div a:hover{
    background-color: #ccc;
}

nav ul li a{
    text-decoration: none;
    color: black;
    font-family: "MyNerdFont", monospace;
    transition: color 300ms;
}

nav ul li a:hover{
    color: #ff0000;
    border-bottom: 1px solid;
}

.menu-icons{
    display: none;
}

@media (max-width:768px){

    body p{
        padding-top: 5rem;
    }

    nav{
        flex-wrap: wrap;
        width: 100%;
    }

    nav ul{
        flex-direction: column;
        width: 100%;
        border-top: 1px solid #ccc;
        padding: 1rem;
    }

    nav ul.hidden{
        display: none;
    }

    .menu-icons{
        display: flex;
        align-items: center;
    }

    .menu-icons:hover{
        background-color: #ccc;
        border-radius: 5px;
    }

    .content{
    padding-top: 5rem;
    display: flex;
    justify-content: center;
    color: green;
    }
}

.hero{
    height: 100vh;
    background-image: url("wallpaperflare.com_wallpaper(2).jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content{
    color: white;
    text-align: center;
    font-size: 2rem;
    
}

.hero-content h1{
    background-color: #ff0000;
}

.hero-content p{
    color: black;
}
