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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 2px solid red; */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: url('../assets/tablet.webp');
}
.heading {
  position: absolute;
  color: white;
  font-size: 4.7rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  padding: 1rem;
  text-align: center;
  margin: 0 1rem;
  top: 18%;
}
#mobileImage {
  background-image: url('../assets/mobil.webp');
  background-size: cover;
  background-repeat: no-repeat;
}

#tabletImage {
  background-image: url('../assets/tablet.webp');
  background-size: cover;
  background-repeat: no-repeat;
}

#pcImage {
  background-image: url('../assets/desktop.webp');
  background-size: cover;
}

.flag-container {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  margin-top: 15rem;
}

.single-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  width: 500px;
  height: 500px;
  border-radius: 50%;
}

.flag-container > div > a > img {
  width: 150%;
  border-radius: 2rem;
}

.logo {
  padding: 2rem;
  position: absolute;
  top: 0%;
  left: 41.5%;
}

a {
  width: 25%;
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease;
}

a:hover {
  transform: translateY(5px);
}

@media (max-width: 666px) {
  .flag-container {
    display: flex;
    flex-direction: column;
    position: absolute;
    margin-top: 12rem;
    gap: 2rem;
  }
  .single-container {
    width: 200px;
    height: 200px;
    margin-top: 0;
  }
  .heading {
    font-size: 1.2rem;
    letter-spacing: 2px;
    top: 18%;
  }
  .flag-container > div > a > img {
    width: 120%;
    border-radius: 1.5rem;
  }
  #mobileImage {
    height: 100vh;
    width: 100vw;
  }
  a {
    width: 70%;
  }
  .logo {
    width: 40%;
    left: 29%;
    padding: 1rem;
    padding-top: 2rem;
  }
}

@media (min-width: 667px) and (max-width: 1024px) {
  .flag-container {
    display: flex;
    position: absolute;
    top: 50;
    left: 25;
    gap: 1.5rem;
    max-height: 100%;
    padding: 1rem;
    margin-top: 8rem;
  }

  .single-container {
    width: 350px;
    height: 350px;
  }

  a {
    width: 50%;
  }

  .logo {
    min-width: 25%;
    top: 2%;
    left: 37%;
  }
  .heading {
    font-size: 2.2rem;
    letter-spacing: 3px;
    margin-top: 2rem;
  }
}

@media only screen and (min-device-width: 667px) and (max-device-width: 1024px) {
  .flag-container {
    display: flex;
    position: absolute;
    top: 50;
    left: 25;
    gap: 1.5rem;
    max-height: 90%;
    padding: 1rem;
  }

  .logo {
    width: 10%;
  }

  #tabletImage {
    height: 100vh;
    width: 100vw;
  }
}

@media only screen and (min-device-width: 667px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
  .flag-container {
    display: flex;
    position: absolute;
    top: 50;
    left: 25;
    gap: 1.5rem;
  }

  .logo {
    width: 10%;
  }

  #tabletImage {
    height: 100vh;
    width: 100vw;
  }
}

@media (min-width: 1025px) {
  .flag-container {
    display: flex;
    position: absolute;
    top: 50;
    left: 25;
  }

  #pcImage {
    height: 100vh;
    width: 100vw;
  }
  a {
    width: 40%;
  }
  .logo {
    width: 15%;
  }
}