* {
    box-sizing: border-box;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.full-width-container {
    background-image: url('../img/wallpaper.png');
    min-width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: top center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.full-width-container.login-page {
    background-image: url('../img/general-wallpaper.png');
}

.bottom-align {
    justify-content: flex-end;
}

.full-width-content {
    color: white;
    text-align: center;
    max-width: 1000px;
}

.login-page .full-width-content {
    color: black;
    padding: 50px 30px;
    background-color: white;
    width: 100%;
    max-width: 800px;
}

.bottom-align .full-width-content {
    margin-bottom: 80px;
}

.full-width-content h1 {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgb(255, 116, 116);
    transition: 0.3s all;
}

.full-width-content p {
    font-size: 18px;
    text-shadow: 0 0 15px rgb(255, 116, 116);
    transition: 0.3s all;
}

.full-width-content p a {
    color: rgb(247, 176, 176);
    text-decoration: none;
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    max-width: 200px;
    font-weight: 600;
    border: 1px solid #ffc1c1;
    transition: 0.3s all;
}

.full-width-content p a:hover {
    background-color: #ffc1c1;
    color: rgb(202, 64, 64);
}

.team {
    display: none;
}

.full-width-content input {
    width: 100%;
    padding: 10px 20px;
    margin-top: 20px;
    transition: 0.3s all;

}

.full-width-content input[type="file"] {
    border: 1px solid grey;
}

.full-width-content input[type="submit"] {
    border: 1px solid rgb(202, 64, 64);
    color: rgb(202, 64, 64);
    background-color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s all;
}

.full-width-content input[type="submit"]:hover {
    background-color: #ffc1c1;
    color: rgb(202, 64, 64);
}

#logout {
    display: block;
    position: fixed;
    right: 5%;
    top: 5%;
    color: white;
    text-shadow: 0 0 15px rgb(255, 116, 116);
    text-decoration: none;
    background-color: rgb(255, 116, 116);
    cursor: pointer;
    transition: 0.3s all;
    padding: 10px 20px;
}

.submission-image {
    width: 100%;
}

.images-holder {
    background-color: white;
    padding: 10px;
    margin: 10px 1%;
    width: 23%;
    display: block;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1 auto;
    width: 100%;
    max-width: 1000px;
    cursor: pointer;
}

.fullscreen-image {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    background-color: black;
    cursor: pointer;
}

.fullscreen-image img {
    width: 100%;
    object-fit: contain;
    height: 100vh;
}

.navigation {
    display: flex;
    flex-direction: row;
    flex: 1 auto;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.navigation a {
    color: rgb(255, 116, 116);
    text-decoration: none;
    padding: 5px 10px;
    margin: 10px 10px;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    border: 1px solid #ffc1c1;
    transition: 0.3s all;

}

@media only screen and (max-width: 600px) {
    .full-width-container {
        background-image: url('../img/home-wallpaper-mobile.png');
    }

    .full-width-content h1 {
        font-size: 40px;
        line-height: 1;
        margin-top: -10%;
    }

    .team {
        display: inline-block;
        width: 100%;
        object-fit: contain;
    }

    .full-width-container.login-page {
        background-image: url('../img/general-wallpaper-mobile.png');
    }
}