@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap');

* {
    font-family: "Fira Code", monospace;
}

nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 80px;
    color: white;
}

.right_nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 50%;
    gap: 20px;
}

.left_nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    width: 50%;
    font-weight: 900 !important;
}

.right_nav a {
    color: white;
    text-decoration: none;
}

.right_nav p {
    color: #C778DD;
}

.underline-link {
    position: relative;
    transition: color 0.3s ease;
}

.underline-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 2px;
    background-color: #b57edc;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.underline-link:hover::after {
    transform: scaleX(1);
}

.footer {
    width: 100%;
    color: white;
    padding: 20px;
    font-family: monospace;
    text-align: center;
}

.footer-top {
    margin-bottom: 15px;
}

.media-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1rem;
}

.media-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.media-icons a {
    color: #ccc;
    font-size: 1.4rem;
    transition: color 0.2s;
}

.media-icons a:hover {
    color: #C778DD;
}

.footer-bottom {
    font-size: 0.85rem;
    color: #666;
}

span {
    color: #C778DD;
}