body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    height: 100%;
    background: #000000;
}

.container {
    height: 100%;
    width: 100%;
    position: absolute;
    background: linear-gradient(30deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);    

}

.header {
    width: 100%;
    margin-top: 20px;
}

.header a {
    color: black;
    margin: 10px;
    text-decoration: none;
    color: white;
}

.header a:hover {
    color: #c3c3c3;
}



.one {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10%;
}

.two {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.two a {
    width: 200px;
    height: 50px;
    background-color: gray;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    margin: 5px;
    font-size: 20px;
    text-decoration: none;
    background: linear-gradient(90deg,rgba(194, 253, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    transition: all .5s;

}

.two a:hover {
    transform: scale(0.97);
}

.two a:active {
    transform: scale(10);
    transition: all 0.5s;
}

#index1btn:active {
    transform: scale(1);
}

.cloudWrapper {
    z-index: 100;
    position: fixed;
}

.cloudWrapper img {
    width: 200px;
    position: absolute;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    animation-name: sway;
    animation-duration: 12s, 6s;
    animation-timing-function: ease-in-out, ease-in-out;
    animation-iteration-count: infinite, infinite;
    animation-direction: alternate, alternate;
}


.cloudWrapper .c1 {
    top: 100px;
    left: 50px;
}
.cloudWrapper .c2 {
    top: 300px;
    left: 230px;
}
.cloudWrapper .c3 {
    top: 170px;
    left: 1000px;
}
.cloudWrapper .p1 {
    top: 30px;
    left: 1000px;
    width: 180px;
    animation: none;
}


@keyframes sway {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(15px); }
  100% { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .cloud {
    animation: none;
  }
}
