body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    background-color: #282a36;
    background-image: linear-gradient(to bottom right, #282a36, #242447);
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30vh;
}


main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: transparent;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    padding: 1em 2em;
    position: absolute;
    top: 0;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 4rem;
    filter: invert(1);
}

nav {
    color: #8be9fd;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 1em;
}

nav ul li a {
    color: inherit;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease-in-out;
}

nav .dropdown .hidden-list {
    display: none;
    position: absolute;
}

nav .dropdown:hover .hidden-list {
    display: block;
}

nav .dropdown .hidden-list li {
    margin: 1rem;
}

nav .dropdown .hidden-list li a {
    font-size: 1.2rem;
    color: inherit;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin: 1em 0;
}

.btn {
    background-color: transparent;
    color: #f8f8f2;
    font-weight: bold;
    border: 2px solid #8be9fd;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 18px;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

@media (min-width: 768px) {
    .btn:hover {
        box-shadow: 0 0 10px #8be9fd;
        color: #f8f8f2;
    }
}

.about {
    text-align: center;
    margin: 4em 0;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2em;
}

.about p {
    font-size: 1.2rem;
}

footer {
    color: #fff;
    text-align: center;
    padding: 1em;
}

footer p {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
}
