body {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column; /* Ensure vertical centering */
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom:100px; /* Add padding at the bottom to move content up */
}

.logo {
    max-width: 100%;
    height: 200px;
    margin-bottom: 50px;
    margin-right: 200px;
}

.entry-button {
    background-color: #81cae2;
    border: none;
    border-radius: 40px;
    padding: 30px 30px;
    font-size: 34px;
    color: white;
    cursor: pointer;
    text-align: justify center;
    margin: 0;
    display: inline-block;
}

/* Footer styles */
.footer {
    background-color: #cddbdd;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    color: #000000;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.footer a {
    color: #66adc5;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

.entry-button:hover {
    background-color: #87ceeb;
}

/* Tablet Portrait */
@media (max-width: 1024px) {
    .logo {
        height: 150px;
    }

    .entry-button {
        padding: 20px 25px;
        font-size: 22px;
    }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
    .logo {
        height: 120px;
    }

    .entry-button {
        padding: 15px 20px;
        font-size: 20px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    body {
        justify-content: space-between; /* Place content at the top and center */
        height: auto; /* Let content dictate height */
        padding: 20px 0; /* Space around content */
    }

    .container {
        flex-grow: 1;
        justify-content: center;
        height: 100%; /* Take full height of the container */
    }

    .logo {
        height: 100px;
        margin-bottom: 20px;
        margin-top: 0; /* No top margin to align to top of the screen */
    }

    .entry-button {
        padding: 12px 18px;
        font-size: 18px;
    }
}/* Tablet Portrait */
@media (max-width: 1024px) {
    .logo {
        height: 150px;
    }

    .entry-button {
        padding: 20px 25px;
        font-size: 22px;
    }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 812px) {
    body {
        justify-content: space-between; /* Place content at the top and center */
        height: auto; /* Let content dictate height */
        padding: 20px 0; /* Space around content */
    }

    .container {
        flex-grow: 1;
        justify-content: center;
        height: 100%; /* Take full height of the container */
        margin-bottom: 20px;
    }

    .logo {
        height: 50px;
        margin-bottom: 80px;
        margin-left: 185px;
    }

    
    .logo {
        height: 120px;
    }
    

    .entry-button {
        padding: 15px 20px;
        font-size: 20px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    body {
        justify-content: space-between; /* Place content at the top and center */
        height: auto; /* Let content dictate height */
        padding: 20px 0; /* Space around content */
    }

    .container {
        flex-grow: 1;
        justify-content: center;
        height: 100%; /* Take full height of the container */
        margin-top: 30px;
    }

    .logo {
        height: 80px;
        margin-bottom: 80px;
        margin-left: 185px;
    }

    .entry-button {
        padding: 10px 18px;
        font-size: 18px;
    }
}

/* Mobile Portrait */
@media (max-width: 375px) {
    body {
        justify-content: space-between; /* Place content at the top and center */
        height: auto; /* Let content dictate height */
        padding: 20px 0; /* Space around content */
    }

    .container {
        flex-grow: 1;
        justify-content: center;
        height: 100%; /* Take full height of the container */
        margin-top: 30px;
    }

    .logo {
        height: 80px;
        margin-bottom: 80px;
        margin-left: 185px;
    }

    .entry-button {
        padding: 10px 18px;
        font-size: 18px;
    }
}