/* Prevent text selection */
.unselectable {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Reset default margin, padding, and box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #1a1a1a;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Main content container */
.container {
    max-width: 80%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 80px;
}

.full-width {
    width: 100%;
    max-width: 90vw;
    padding: 20px;
}


h1 {
    font-size: 2em;
}

p {
    margin-top: 10px;
    font-size: 1.2em;
    opacity: 0.8;
}


.error {
    font-size: 250px;
    color: lime;
}

.not_found {
    font-size: 60px;
}

