*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body
{
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background: #111;
    color: white;
}
body
{
    display: flex;
    flex-direction: column;
    font-family: "Libre Baskerville", serif;
}
.hero
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffd700;
    border-bottom: 1px solid #ff2400;
    z-index: 1000;
}
.navigation
{
    display: flex;
    gap: 20px;
}
.navigation a {
    display: inline-block;
    min-width: 180px;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #305cde;
    border: 1px solid #2323ff;
    border-radius: 8px;
    transition: background-color .2s, transform .2s, border-color .2s;
    font-family: "Cinzel", serif;
}
.navigation a:hover
{
    background-color: #66f6ff;
    border-color: #6ff66f;
    color: #0b1f3a;
    transform: translateY(-2px);
}
.navigation a:active
{
    transform: translateY(0);
}
main
{
    flex: 1;
    margin-top: 70px;
    margin-bottom: 50px;
    padding: 32px;
}
footer
{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1b1b1b;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}
.menu-toggle
{
    display: none;
    background: #305cde;
    border: 1px solid #2323ff;
    border-radius: 8px;
    width: 52px;
    height: 52px;
    cursor: pointer;
}
.menu-toggle span
{
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px auto;
    background: white;
    border-radius: 2px;
    transition: all .3s ease;
}
.menu-toggle.active span:nth-child(1)
{
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2)
{
    opacity: 0;
}
.menu-toggle.active span:nth-child(3)
{
    transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 900px)
{
    .navigation
    {
        gap: 10px;
    }
    .navigation a
    {
        min-width: 130px;
        padding: 10px 14px;
        font-size: 0.9rem;
    }
}
@media (max-width: 600px)
{
    .hero
    {
        height: auto;
        padding: 10px 0;
        flex-direction: column;
    }
    .menu-toggle
    {
        display: block;
        background: red;
        margin-bottom: 10px;
    }
    .navigation
    {
        display: flex;
        flex-direction: column;
        width: 90%;
        gap: 10px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height .3s ease, opacity .3s ease;
    }
    .navigation.show
    {
        max-height: 400px;
        opacity: 1;
    }
    .navigation a
    {
        width: 100%;
        min-width: unset;
    }
    main
    {
        margin-top: 90px;
    }
}