body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    color: #ffffff;
    font-family: sans-serif;
    a {
        color: #ffffff;
        text-decoration: none;
    }
    a:hover {
        color: #D1D5DB;
        text-decoration: dotted;
    }
}

::selection {
    background-color: #FFE0B2;
    color: #000000;
}

.container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.title {
    font-size: 50px;
    font-weight: bold;
}

.links {
    font-size: 25px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.disabled {
    pointer-events: none;
    opacity: 0.7;
    text-decoration: line-through;
}