.login-screen-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full viewport height */
    box-sizing: border-box;
    padding-top: 10%; /* Adjust padding to move content slightly higher */
}

.login-screen-title {
    color: #007aff;
    font-family: snowfont;
    font-size: 6.5em;
    margin: 0;
    line-height: 0.7;
    text-align: center;
}

.form-container {
    width: 100%;
    max-width: 400px;
    margin-top: 10%;
}

.username {
    text-align: center;
    width: 100%;
}

.play-button-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.play {
    width: 80%;
}

.penguin-container {
    position: absolute;
    bottom: 9%;
    right: 9%;
    display: flex;
    align-items: center;
}

.fish-container {
    margin-top: 50px; /* Slightly below the penguin */
}

#penguin {
    width: 125px;
}

#pile-of-fish {
    width: 75px;
    display: block;
    margin: auto;
}

.responsive-img {
    width: 50%;
}

@media (max-width: 600px) {
    .responsive-img {
        width: 100%;
    }
}