* {
  margin: 0;
  border: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body {
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
main {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
section {
  display: grid;
  place-items: center;
}
#logos {
  position: relative;
  width: 80vw;
  height: 20vh;
}
.logo {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.logo_orange {
  top: 52%;
  left: 52%;
}
.logo_yellow {
  top: 54%;
  left: 54%;
}
.logo_blue {
  top: 56%;
  left: 56%;
}
.text {
  margin-top: 5vh;
  font-size: 2rem;
  font-weight: 500;
}
.links {
  margin-top: 20vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20%;
}
a {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
@media (min-width: 641px) {
  main {
    width: 500px;
  }
  #logos {
    width: 500px;
    height: 500px;
  }
}
