@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;900&display=swap");

* {
  border: 0;
  margin: 0;
  padding: 0;
  color: white;
}

body {
  background: url("./files/Background.png");
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.body-wrapper {
  width: 80%;
}

section {
  width: 100%;
  margin: 4em 0;
}

h1 {
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  border-bottom: 1px black;
  font-size: 3em;
  margin-bottom: 0.5rem;
}

footer {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
}

footer > div {
  flex: 1;
}

.content-wrapper {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1em 0;
}

.details-text > p {
    padding: 0.5rem;
  margin: 1em 0;
}

.text-center {
  width: 100%;
  text-align: center;
}

.pictures-picture {
  display: flex;
  padding: 1%;
  gap: 1%;
}

.pictures-picture > img {
  flex: 1 1%;
  width: 30%;
  height: 30%;
}

.title {
  width: 100%;
  height: auto;
}

.title-img {
  width: 100%;
  height: auto;
  box-shadow: 0 8px 20px 5px rgba(28, 163, 208, 0.763);
}


.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.links-link {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.links-link > div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.links-button-img {
  width: 200px;
  height: auto;
}

@media (max-width: 850px) {
  .body-wrapper {
    width: 100%;
  }
  .links-link {
    flex-direction: column;
  }

  .pictures-picture {
    display: flex;
    flex-direction: column;
    gap: 1%;
  }

  .pictures-picture > img {
    flex: 1 1%;
    width: auto;
    height: 20%;
    margin-bottom: 1em;
  }
}
