::-webkit-scrollbar {
    width: 0px;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    --time:5s;
}

a {
    text-decoration: none;
}

.home {
    color: white;
    transform: translateY(-1555%);
    text-align: center;
    width: 60px;
    height: 25px;
    margin: 25px;
    padding: 10px;
}

.home img {
    max-width: 200%;
    transition: all 0.3s;
}

.home:hover img {
    transform: scale(1.1);
}

.body {
    background: black;
}

.banner {
    background: black;
    width: 100%;
    margin: 0;
}

.menu {
    background: black;
    color: white;
    padding-left: 80px;
    padding-right: 80px;
    word-spacing: 200px;
    
}

.cap {
    overflow-y: scroll;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0px;
    
  
    /* visual styling */
    display: grid;
    width: 80%;
    grid-auto-flow: row;
    gap: 0px;
    padding-left: 0px;
    display: block;
    align-items: center;
}

.cap section{
    margin: 60px;
    border: 5px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    text-align: center; 
    flex-direction: row;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    box-sizing: border-box;
    justify-content: center;
    padding: 25px;
}

.cap section.titulo {
    color: #fff;
    text-shadow: 0 0 5px rgba(0,0,0,0.4);
    font-size: 50px;
    height: 100%;
    
}

.cap section:nth-of-type(even) {
    background: #00000000;
    color: #fff;
    font-size: 20px;
}

.cap section:nth-of-type(1) {
    background-image: url('img/eastB.png');
}

.cap section:nth-of-type(3) {
    background-image: url('img/paradise.png');
}

.cap section:nth-of-type(5) {
    background-image: url('img/newW.png');
}

.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;
    overflow: hidden;
    width: 100%;
    height: 90%;
    margin: 0;
    animation: sky var(--time) ease infinite;

}

.surface {
    width: 100vw;
    position: relative;
}

.ocean {
    height: 10%;
    width: 100%;
    background-color: rgb(0, 12, 53);
    background-image: linear-gradient(to bottom, rgb(0, 2, 95), rgb(0, 0, 0));

}

.moon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: azure;
    background-image: linear-gradient(315deg, rgb(53, 53, 53), white);
    transform:translate(575%, 130%);
    box-shadow: 0 0 15px 15px rgba(245, 245, 245, 0.123);
    z-index: 1;
    display: flex;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;

}

.sun{
    mix-blend-mode: multiply;
    transform: translate( 32%, 252%);
    animation: set var(--time) ease infinite;
    
}

.isl {
    width: 85px;
    height: 70px;
    border-radius: 50%;
    background-color: rgb(0, 0, 0);
    transform: translate( 270%, 320%);
}

.wind {
    mix-blend-mode: multiply;
    transform: translate( 405%, -10%);
}

.water {
    mix-blend-mode: multiply;
    transform: translate( 600%, 31%);
}

.zou {
    mix-blend-mode: multiply;
    transform: translate( 850%, 30%);
    animation: zzz var(--time) ease infinite;
}

.footer {
    color: white;
    text-align: center;
    transform: translateY(150px);
    bottom: 0;
}

