* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    background: #000 url('../img/5280_SERVER_SPLASH_default.png') no-repeat center top;
    background-size: cover;
    color: #b3b3b3;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* align-items: center; */
    padding: 20px 40px;
    position: relative;
    /* overflow: hidden; */
    letter-spacing: -.01em;
    font-size: 12pt;
}

header {
    display: flex;
    align-items: start;
    /* margin-bottom: 40px; */
    padding: 25px 25px 40px 25px;
}

.logo {
width: 120px;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.title {
    /* font-size: clamp(3rem, 10vw, 6rem);*/
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.2;
    font-size: 5rem;
   
    
    
}

.subtitle {
    /* font-size: clamp(1.2rem, 3vw, 1.675rem); */
    font-weight: 300;
    margin-bottom: 25px;
    color: #fff;
    font-size: 16pt;
}

.message {
    /* font-size: clamp(0.95rem, 2vw, 1.15rem); */
    font-weight: 300;
    line-height: 1.6;
    max-width: 1100px;
    margin: 0 auto;
    font-size: 16pt;
}

footer {
    padding: 40px 25px 25px 25px;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

#footerLink {
    color: #b3b3b3;
    text-decoration: none;
}

.btn-default {
    background-color: #241f89;
    color: #ffffff;
    padding: 10px 80px;
    text-decoration: none;
    margin: 40px 0;
    display: inline-block;
}


/* Desktop break - show on larger screens */
.desktop-break {
    display: inline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .title {
        /* margin-bottom: 5rem; */
        font-size: 4.5rem;
        margin-bottom: 2.5rem;
    }

    .subtitle {
        /* margin-bottom: 4rem; */
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .message {
        font-size: 15pt;

    }
    header {
            padding: 25px 0 40px 0;

    }
    footer {
            padding: 40px 0 0 0;

    }
    .message {
        font-size: 15pt;
        line-height: 1.5;

    }
    
    /* Hide desktop break on mobile/tablet */
    .desktop-break {
        display: none;
    }
}

@media (max-width: 480px) {
    body {
         padding: 20px;
         font-size: 10pt;
    }
    .title {
        margin-bottom: 2rem;
        font-size: 4rem;
    }

    .subtitle {
        margin-bottom: 1.5rem;
        font-size: 1.375;
    }

    .message {
        font-size: 14pt;
        line-height: 1.4;
    }

    header {
        padding: 20px 0 40px 0
    }
    
    footer {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 40px 0 0 0;

    }
}