
body {
    background-color: black;
    font-family: "Malgun Gothic Semilight";
    color: antiquewhite;
    margin-left: 30px;
    padding-top: 200px;
}

a {
    margin-right: 15px;
    text-decoration: none;
    color: #f5e6d3;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
    display: inline-block;
}

a:hover {
    color: cadetblue;
    text-decoration: underline;
}

h1 {
    text-align: left;
    font-family: Monospace;
}

h5 {
    text-align: left;
    font-family: "Malgun Gothic Semilight";
}

img {
    border: black solid;
    border-radius: 10px;
}

p {
    font-family: monospace;
}

.elements {
    margin-bottom: 20px;
}

#top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    background-color: #555;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 18px;
}

#top:hover {
    background-color: #333;
}

nav.nav-links {
    margin: 40px;
    padding: 20px;
    font-size: 40px;
}

.top {
    display: flex;
    align-items: flex-start;
    background-color: black;
    width: 100%;
    padding: 20px 50px;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.top img {
    width: 100px;
}

.h {
    display: flex;
    flex-direction: column;
    margin: 0 50px;
    padding: 0;
    text-align: left;
}

footer {
    margin: 10px;
}

.footer-content a {
    margin-right: 20px;
    float: right;
    text-align: center;
}

button  {
    background-color: antiquewhite;
    cursor: pointer;
    padding: 10px 20px;
    border: none;
    margin-bottom: 20px;
}
button:hover {
    background-color: #d9cbba;
}
.metrics-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.metric-card {
    background-color: antiquewhite;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 150px;
    font-size: 16px;
    color: black;
}

@media (max-width: 768px) {
    body {
        margin-left: 0;
        padding-top: 140px;
    }

    nav.nav-links {
        margin-left: 30px;
    }

    h1, h5 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    nav.nav-links {
        margin-left: 20px;
    }

    h1, h5 {
        font-size: 1.2rem;
    }

    body {
        padding-top: 160px;
    }

}