@font-face {
    font-family: 'Textile';
    src: url('media/Textile.ttf') format('truetype');
}

@font-face {
    font-family: 'CourierPrime';
    src: url('media/CourierPrime.ttf') format('truetype');
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-color: black;
    color: white;
    font-family: 'CourierPrime';
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.hidden {
    display: none;
}

.centered {
    text-align: center;
    padding: 20px;
    width: calc(100% - 40px);
}

button, #audio-control {
    margin: 12px;
    padding: 10px 25px;
    font-size: 16px;
    color: white;
    background-color: rgba(68, 68, 68, 0.6);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'CourierPrime';
    transition: background-color 0.3s;
    width: auto;
    max-width: 95%;
}

button:hover, #audio-control:hover {
    background-color: rgba(119, 119, 119, 0.6);
}

.fade-in {
    animation: fadeIn 2s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

video {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#title {
    font-family: 'Textile';
    position: relative;
}

#description {
    position: relative;
}

#button-rows {
    position: relative;
    top: 0;
}

@media (max-width: 900px) {
    .centered {
        padding: 15px;
        width: calc(100% - 30px);
    }
    
    #button-rows a button, #audio-control {
        padding: 10px 25px;
        font-size: 16px;
        max-width: 95%;
    }

}

/* v. 2.1 */
/* © Michael Rivera (Peeps40836) | 2025. All rights reserved, unless otherwise noted. */