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

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #292A2D;
    text-align: center;
    overflow: hidden;
}

a {
    font-size: 25px;
    margin-bottom: 5px;
    color: white;
    text-align: left;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
}

a:visited {
    color: #ffffff;
    text-decoration: none;
}

.container {
    display: flex;
    flex-direction: column;
}

.container {
    max-height: 80vh;
    overflow-y: auto;
    padding: 1em;
}

.container a {
    display: block;
    font-size: 1em;
    word-break: break-all;
    margin-bottom: 0.5em;
}

@media (max-width: 600px) {
    .container a {
        font-size: 0.85em;
    }
}