@keyframes rgb {
    0% {
        box-shadow: 0px 0px 20px red;
    }
    15% {
        box-shadow: 0px 0px 20px rgb(255, 123, 0);
    }
    25% {
        box-shadow: 0px 0px 20px rgb(251, 255, 0);
    }
    35% {
        box-shadow: 0px 0px 20px rgb(21, 255, 0);
    }
    45% {
        box-shadow: 0px 0px 20px rgb(0, 225, 255);
    }
    60% {
        box-shadow: 0px 0px 20px rgb(0, 4, 255);
    }
    75% {
        box-shadow: 0px 0px 20px rgb(225, 0, 255);
    }
    85% {
        box-shadow: 0px 0px 20px rgb(255, 0, 128);
    }
    100% {
        box-shadow: 0px 0px 20px rgb(255, 0, 0);
    }
}

body {
    margin: 0;
    font-family: "Nunito";
    background-color: black;
    color: white;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-family: "Nunito";
    background-color: rgb(14, 14, 14);
    position: sticky;
    z-index: 10;
    top: 0;
    color: white;
}

.header {
    margin: 25px;
}

#menu {
    margin-right: 1.5rem;
}

#about {
    background-color: rgb(14, 14, 14);
    padding: 20px;
    margin: 10px;
    border-radius: 12px;
    max-width: 450px;
    animation: rgb 5s ease-in-out infinite;
}

.texts {
    margin-top: 0;
    margin-bottom: 10px;
}

.btn {
    border-style: solid;
    border: 0;
    min-width: 120px;
    min-height: 30px;
    border-radius: 12px;
    background-color: rgb(0, 204, 255);
    font-family: "Nunito";
    font-size: 18px;
    color: white;
    box-shadow: 0px 0px 20px rgb(0, 225, 255);
    transition: all 300ms ease-in-out;
}

.btn:hover {
    background-color: rgb(0, 174, 218);
    box-shadow: 0px 0px 20px rgb(0, 197, 223);
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 600px) {
  .container {
    flex-direction: column;
  }
}

#downloads {
    background-color: rgb(14, 14, 14);
    padding: 20px;
    margin: 10px;
    border-radius: 12px;
    max-width: 450px;
}

.title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.titleicon {
    margin-bottom: 10px;
}

#socials {
    background-color: rgb(14, 14, 14);
    padding: 20px;
    margin: 10px;
    border-radius: 12px;
    max-width: 450px;
}

#connection {
    background-color: rgb(14, 14, 14);
    padding: 20px;
    margin: 10px;
    border-radius: 12px;
    max-width: 450px;
}

.credits {
    color: gray;
    text-align: center;
}

li {
    margin: 20px;
}

#rollingmenu {
    background-color: rgb(14, 14, 14);
    position: absolute;
    display: block;
    padding-bottom: 1px;
    width: 100vw;
    z-index: 9;
    margin-top: -20px;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
}

.choice {
    margin-left: 25px;
}

#rollingmenu.opened {
    position: sticky;
    transform: translateY(0);
}

#menu {
    cursor: pointer;
}