@font-face {
    font-family: 'Pixels';
    src: url('fonts/PixelifySans-Regular.ttf');
}

html {
    margin: 0;
    box-sizing: border-box;
    background-color: #3a141f;
    background-image: url('images/bg-updates.webp');
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: 'Pixels';
    overflow: hidden;
    cursor: url('images/pixel-cursor.svg'), auto;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page {
    height: 55%;
    width: 32%;
    position: absolute;
    z-index: 2;
    top: 35%;
    padding: 10px;
    border: 5px solid #66dad4;
    border-radius: 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: #87ECE7;
    font-size: x-large;
    background-color: rgba(0, 0, 0, 0.767);
}

h1 {
    z-index: 3;
    font-size: 5em;
    text-align: center;
    color: black;
    text-shadow: #66dad4 5px 5px;

}

.scrollable {
    margin-top: 5px;
    overflow: scroll;
    overflow-x: hidden;
    scrollbar-color: #66dad4 rgb(38, 38, 39);
    scrollbar-width: 6px;
    padding: 15px;
    height: calc(100% - 80px);
    line-height: 1.2;
}

a {
    color: inherit;
    cursor: url('images/pixel-pointer.svg'), pointer;
    text-decoration: underline;
}

h1 a:hover {
    color: #66dad4;
    text-shadow: black 5px 5px;
}

.date {
    color: #02e1d6;
}

hr {
    height: 2px;
    color: #4da4a0;
    background: #4da4a0;
    font-size: 0;
    border: 0;
}


@media (max-width: 992px) {
    h1 {
        font-size: 4.5em;
    }

    .page {
        width: 48%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3.7em;
    }
    .page {
        width: 70%;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 3em;
    }
    .page {
        width: 90%;
    }
}