/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* background-color: rgb(75, 210, 255); */
    font-family: sans-serif;
}

/* DEBUG */

.header {
    background-color: #255ee9;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}

.header-container {
    background-color: #255ee9;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

.nav-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}


.flex-container-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 600px;
    background-image: url(../img/jumbo.png);
    background-position: center;
    background-size: cover;
    text-align: center;
}


.flex-container-2 {
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: row;
    padding: 100px 300px;

}

.flex-container-3 {
    background-color: lightgray;
    display: flex;
    padding: 160px;
}

.container-footer {
    background-color: #424242;
    display: flex;
    justify-content: center;
    padding: 10px 200px;
    gap: 20px;

}

.container-footer-main {
    background-color: #424242;
    display: flex;
    flex-direction: column;
    width: 30%;
    max-height: auto;
}
.sub-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    column-gap: 5px;
    }

    .adventure-container {
    background-image: url(../img/stars.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 300px;
    }

.container-footer-others {
    background-color: #424242;
    display: flex;
    width: 70%;
    justify-content: row;
}

.container-column {
    background-color: #424242;
    display: flex;
    flex-direction: column;
    width: 30%;
}

.last-footer {
    background-color: #424242;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.aqua-container {
    background-color: #424242;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}

/* UTILITY */

img {
    display: inline-block;
}

.italy {
    width: 20px;
    display: inline-block;
}

h1 {
    font-size: 3rem;
}

.line-height1 {
    line-height: 1.5;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.white-text {
    color: white;
}

.violet-text {
    color: #7289da;
}

.button-white {
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    display: inline-block;
    padding: 10px;

}

.button-black {
    background-color: rgb(0, 0, 0);
    border-radius: 20px;
    display: inline-block;
    padding: 10px;
}

.button-violet {
    background-color: #7289da;
    border-radius: 20px;
    display: inline-block;
    padding: 10px;
}

a {
    text-decoration: none;
}

.link-white {
    color: white;
    vertical-align: center;
}

.link-black {
    color: black;
    vertical-align: center;
}

#alt {
    background-color: lightgray;
}

/* HEADER */


ul {
    list-style: none;

}

.li-displayline {
    display: inline;
    line-height: 30px;
}

li {
    padding-top: 10px;
}


/* MAIN */

/* main {
    background-color: rgb(0, 255, 42);
} */

.content-1 {
    /* width: 800px;
    height: 400px;
    display: flex;
    flex-direction: row;
    padding-left: 100px;
    padding-right: 100px; */
}

.content-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-size: cover;
    text-align: center;
}

.content-3 {
    display: flex;
    width: 40%;
    flex-direction: column;
    justify-content: center;
    align-content: normal;
}

.content-3-alt {
    display: flex;
    width: 40%;
    flex-direction: column;
    justify-content: center;
    align-content: normal;
    order: -1;
}

.content-4 {
     display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* FOOTER */

footer {
    background-color: rgb(0, 0, 0);
    max-height: auto;
}



.footer-elements {
    background-color: lightpink;
    border: 2px dotted black;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    height: 20px;
}