.center-text {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: row;
}

.grid-container {
    display: grid;
    place-items: center;
    align-items: center;
}

.mobile-only {
    display: none;
}

.display-hidden {
    display: none;
}

body {
    background-color: #080708;
}

header, footer {
    width: auto;
    height: auto;
}

p { 
    margin: 10px;
    color: #d689ff;
    font-size: 20px;
    font-family: Lucida Console, monospace;
    text-align: center;
    word-spacing: 5px;
    border-color: #a600ff;
    border-width: 7px;
    border-top-style: double;
    border-bottom-style: double;
    border-right-style: solid;
    border-left-style: solid;
    padding: 15px;
    max-width: 878px;
}

hr {
    color: #a600ff;
    max-width: 900px;
    border-width: 5px;
    border-top-style: double;
    border-bottom-style: double;
    border-right-style: solid;
    border-left-style: solid;
}

h1 {
    color:#d689ff;
    font-size: 24px;
    font-family: Lucida Console, monospace;
    text-align: center;
    align-items: center;
    padding: 1px, 5px;

}

h3 {
    font-size: 2px;
}

a {
    margin: 10px;
    text-decoration: none;
    font-size: 24px;
    font-family: Lucida Console, monospace;
    color:#d689ff;
    margin: 5px;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: underline;
    transform: scale(1.05);
}

a:active {
    text-decoration: underline;
    color:#e3afff;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .notice {
        font-size: 1.2rem;
    }

    .profile-img {
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .grid-container {
        padding: 0 12px;
    }

    .page-title {
        font-size: 1.4rem;
    }

    .section-heading {
        font-size: 1.3rem;
    }

    p {
        font-size: 0.95rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}