::-webkit-scrollbar {
    width: 0px;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    --time:5s;
}

.body {
    background: black;
}

.banner {
    background: black;
    width: 100%;
    margin: 0;
}

.menu {
    background: black;
    color: white;
    padding-left: 80px;
    padding-right: 80px;
    word-spacing: 200px;
    
}

.scene {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.sky {
    background: linear-gradient(to top, rgb(0, 132, 255), rgb(0, 0, 0));
    background-image: linear-gradient(to bottom, black, rgb(42, 140, 185));
    background-size: 400% 400%;
    position: relative;
    -webkit-box-reflect: below 0 linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    animation: sky var(--time) ease infinite;
    width: 100%;
    height: 80%;
    margin: 0;

}

.ocean {
    height: 20%;
    width: 100%;
    background-color: rgb(0, 12, 53);
    background-image: linear-gradient(to bottom, rgb(0, 2, 95), rgb(0, 0, 0))
}

.text {
    width: 300px;
    height: 600px;
    text-align: center;
    font-size: 2em;
    font-weight: bolder;
    color: white;
    z-index: 0;
    text-decoration: none;
}

.sun{
    mix-blend-mode: multiply;
    transform: translateY(15%);
    animation: set var(--time) ease infinite;
    
}

.moon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: azure;
    background-image: linear-gradient(315deg, rgb(53, 53, 53), white);
    transform:translate(175%, -65%);
    box-shadow: 0 0 15px 15px rgba(245, 245, 245, 0.123);
    z-index: 1;
    flex-shrink: 0;

}

.footer {
    color: white;
    text-align: center;
    transform: translateY(150px);
    bottom: 0;
}

.historia {
    transform: translate(-140%, 70%);
    text-decoration: none;
    color: white;
}

.historia img {
    max-width: 100%;
    transition: all 0.3s;
}

.historia:hover img {
    transform: scale(1.1);
}

.ilhas {
    transform: translate(0%, -40%);
    text-decoration: none;
    color: white;
    overflow: hidden;
}

.ilhas img {
    max-width: 100%;
    transition: all 0.3s;
}

.ilhas:hover img {
    transform: scale(1.1);
}

.personagens {
    transform: translate(140%, -186%);
    text-decoration: none;
    color: white;
}

.personagens img {
    max-width: 100%;
    transition: all 0.3s;
}

.personagens:hover img {
    transform: scale(1.1);
}

.hi {
    transform: translate(-140%, 498%);
    color: white;
    text-decoration: none;
}

.il {
    transform: translate(0%, -435%);
    color: white;
    text-decoration: none;
}

.pe {
    transform: translate(140%, -1190%);
    color: white;
    text-decoration: none;
}

