html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "basic-font";
  src: url("./assets/fonts/basic-font.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "basic-font", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: black;
  background-color: white;
}

.container {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

main {
  display: flex;
}

.content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  margin: 0 50px;
  .fifa-logo {
    width: 70px;
    height: auto;
    transition: width 0.2s ease;
    &:hover {
      width: 80px;
    }
  }
}

.information {
  text-align: center;
  min-width: 400px;
}

#counter {
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  .content {
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
    margin: 0 10px;
  }

  .information {
    min-width: 0;
    width: 100%;
    margin: 20px 0;
  }
}

@media screen and (max-width: 350px) {
  #counter {
    font-size: 20px;
  }
}

#estimatedRelease {
  margin: 0;
}

#lastUpdate {
  margin: 0;
  font-size: 12px;
}

header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #131314;
  height: 50px;
  color: white;
}

footer {
  background-color: white;
  text-align: center;
  padding: 10px 0;
}

.support {
  height: 35px;
  transition: height 0.2s ease;
  &:hover {
    height: 37px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}
