html, body {
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

body {
    background-image: url('../img/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.d-flex {
    display: flex !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.justify-content-center {
    justify-content: center !important;
}

.content {
    height: 100vh;
    padding-top: 150px;
}

.text-center {
    text-align: center;
}

.maintenance-title {
    font-weight: 900;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.mb-5 {
    margin-bottom: 3rem;
}

.discord-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #5865F2;
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    box-shadow: 0 8px 0 #2F3389;
    transition: all 0.1s ease;
}

.discord-btn:hover {
    background: #4752C4;
    color: white !important;
    transform: translateY(2px);
    box-shadow: 0 6px 0 #1E2060;
}

.discord-btn:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #1E2060;
}

