* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Russo One, sans-serif;
    line-height: 1.6;
    background: #f4f4f4;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
header {
    background: darkslateblue;
    color: #fff;
    padding: 1rem 2rem;
    text-align: right;
}

#main-content {
    padding: 6rem 5rem 12rem;
}

nav a {
    color: #fff;
    font-size: 1.4rem;
    margin: 0 1rem;
    text-decoration: none;
}

#landing {
    color: darkslateblue;
    font-size: 5rem;
    padding: 6rem 5rem 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    min-height: 100vh;
}

#slogan {
    text-align: right;

}

h2 {
    font-size: 4rem;
}

p {
    font-size: 1.5rem;
}

#trail {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: darkslateblue;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform 0.1s linear;
}

a {
    color: #333;
    text-decoration: none;
}
footer {
    text-align: center;
    padding: 1rem;
    background: darkslateblue;
    color: #fff;
    margin-top: auto;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    header {
        text-align: center;
        padding: 1rem;
        width: 100%;
    }

    nav a {
        display: block;
        margin: 0.5rem 0;
        font-size: 1.2rem;
    }

    #main-content {
        padding: 3rem 2rem 6rem;
    }

    #landing {
        font-size: 3rem;
        padding: 3rem 2rem 0;
        height: auto;
        text-align: center;
    }

    #slogan {
        text-align: center;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    p {
        font-size: 1.2rem;
    }
}
