body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
#full-background-picture {
    background-image: url("/Background.jpg");
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}

.container{
    display: flex;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: auto;
    padding-bottom: 100px;
}

#some-text {
    display: flex ;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: #ff9900;
    flex-direction: column;
    
}

@media (max-width: 431px){
    #some-text {
        font-size: 30px;
    }
}

#some-text #some-text-logo {
    height: 30%;
    max-height: 200px;
    width: auto;
    margin-bottom: 20px;
}

#password-input {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

#password-input input {
    width: 200px;
    height: 30px;
    font-size: 16px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 5px;
}

#password-input h3,h5,h4 {
    color: #ffffff;
}

#password-input button {
    margin-left: 10px;
    padding: 5px 10px;
    font-size: 16px;
    background-color: #ff9900;
    color: #fff;
    border: 1px solid black;
    border-radius: 5px;
}