* {
    font-family: "Inter", serif;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #1d1d1d;
    color: rgb(209, 209, 209);
    font-size: 1.3em;
}

.top-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 24px;
    padding: 12px;
    background-color: #272727;
    border-radius: 8px;
}

.top-section img {
    width: 100px;
}

.top-section h1 {
    margin-top: 16px;
    margin-bottom: 12px;
    font-size: 1.7rem;
}

.top-section p {
    font-size: 1.2rem;
}

.github_link {
    padding: 0px;
    margin: 0px;
}

.github {
    scale: 50%;
    border-radius: 16px;
}

.middle-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* From Uiverse.io by MuhammadHasann */ 
button {
    margin-top: 10%;
    position: relative;
    padding: 12px 35px;
    background: #fec195;
    font-size: 17px;
    font-weight: 500;
    color: #181818;
    border: 3px solid #fec195;
    border-radius: 8px;
    box-shadow: 0 0 0 #fec1958c;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }

/*? ----- call 2 action button -----*/
.star-1 {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2 {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
  position: absolute;
  top: 20%;
  left: 40%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
  position: absolute;
  top: 25%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s ease;
}

button:hover {
  background: transparent;
  color: #fec195;
  box-shadow: 0 0 25px #fec1958c;
}

button:hover .star-1 {
  position: absolute;
  top: -80%;
  left: -30%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-2 {
  position: absolute;
  top: -25%;
  left: 10%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-3 {
  position: absolute;
  top: 55%;
  left: 25%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-4 {
  position: absolute;
  top: 30%;
  left: 80%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-5 {
  position: absolute;
  top: 25%;
  left: 115%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-6 {
  position: absolute;
  top: 5%;
  left: 60%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.fil0 {
  fill: #fffdef;
}

/* -------------- */

.install-section {
    background-color: #272727;
    padding: 12px;
    border-radius: 8px;
}

.tutorial-section {
    margin: 12px;
    border-top: 2px solid grey;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.version {
    margin-top: 12px;
    color: rgba(219, 235, 250, 0.918);
    font-size: 1.8rem;
    font-weight: bold;
}

.gallerie {
    display: flex;
    flex-direction: row;
}

.gallery-images {
    width: 200px;
    border-radius: 8px;
    margin: 6px;
}

.footer {
    position: relative;
    bottom: 0px;
    background-color: #272727;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.footer img {
    width: 100px;
    border-radius: 6px;
    margin-right: 12px;
}

@media screen and (max-width: 560px) {
    .footer {
        font-size: 1rem;
    }
}

@media screen and (max-width: 460px) {
    .gallerie {
        flex-direction: column;
    }

    .footer img {
        width: 60px;
    }

    .footer {
        font-size: 0.8rem;
    }
}