body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto Condensed", sans-serif;
    /* font-family: 'Arial Narrow', 'Franklin Gothic Medium', 'compacta', 'sans-serif-condensed', sans-serif; */
    overflow: hidden; /* Prevent scrolling */

}



.roboto-condensed-300 {
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: -1;
}

.content {
    text-align: center;
    color: #000;
    z-index: 1;
}

.content-top {
    position: absolute;
    /* Add this line */
    top: 100pt;
    /* Add this line */
    line-height: 1.5em;
    text-align: center;
    color: #000;
    z-index: 1;
}

.logo {
    max-width: 30%;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 2em;
    font-weight: 100;
    word-break: break-word;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
}

a {
    text-decoration: none;
    color: #000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        max-width: 80%;
    }

    h1 {
        font-size: 1.5em;
    }

    .content-top {
        top: 50pt;   
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 80%;
    }

    h1 {
        font-size: 1.2em;
    }

    content-top {
        top: 50pt;   
    }
}