body {
    margin: 0;
}

#main-content-div {
    width: 100%;
    min-height: 80%;
    background-image: url("fundo_azul.png");
    background-position: center; /* Center the image */ 
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#logo {
    margin-top: 1em;
    height: 15em;
    background-image: url("lucaspalooza_nome.png");
    background-position: center; /* Center the image */
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-end;
    margin: 2em;
    
}

#planet_sticker_container {
    height: 9em;
    display: flex;
    justify-content: flex-end;
    padding-top: 3em;
}

.sticker {
    width: 150px;
    height: 150px;
    animation-name: floating;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.fixed_sticker {
    width: 150px;
    height: 150px;
}

@keyframes floating {
    from { transform: translate(0,  0px); }
    50%  { transform: translate(0, 40px); }
    to   { transform: translate(0, -0px); }    
}

#edition_banner {
    font-family: "Lilita One", serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    justify-content: space-between;
    font-size: 30px;
    align-items: center;
}

#edition_banner_name {
    padding-left: 8px;
    padding-right: 5px;
    background-color: rgb(232, 243, 85);
    height: 1.2em;
}

/* #planet_sticker {
    height: 9em;
    width: 9em;
    background-image: url("sticker_planeta.png");
    background-position: center; 
    background-size: cover;
    background-repeat: no-repeat;
    transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
} */

#main-content {
    min-height: 80%;
}

#main-content-buildings {
    height: 5em;
    background-image: url("predios.png");
    background-position: center; /* Center the image */
}

#aditional-info {
    border-top: 4px solid black;
    background-color: #3a8059;
    min-height: 20%;
}

#main_button_area {
    display: flex;
    justify-content: center;
}

#main_button {
    background-color: rgb(227, 227, 227);
    border: 4px solid black;
    border-bottom: 8px solid black;
    width: 20em;
    height: 2.5em;
    border-radius: 1.3em;
    transform: translateY(-1.5em);
    font-family: "Bitter", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
}

#supporters_area {
    display: flex;
    justify-content: space-between;
}

#supporters_area_content {
    background-color: #8ad7ad;
    padding: 1em;
    margin-bottom: 2em;
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    display: flex;
    flex-direction: column;
    font-size: 1em;
}

.supporter_brand {
    margin-right: 1em;
    width: 6em;
    height: 6em;
}

#supporters_area_right_sticker {
    transform: translateY(-5em);
}