html {
  font-size: 10px;
  height: 100vh;
}

body {
  color: #0f52ba;
  font-family: "Audiowide", sans-serif;
  display: flex;
  flex-direction: column;
  background-color: #656162;
  background-image: url("./assests/field.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: bottom;
  min-height: 100%;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  margin-top: 20px;
  color: #8b0000;
  display: block;
}
p {
  margin: 0;
}
h1 {
  font-size: 4rem;
  color: white;
  font-weight: 500;
  text-align: end;
}
main {
  flex-grow: 2;
  display: flex;
}

.justIt {
  display: flex;
  flex-direction: column;
  width: inherit;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.justIt__image {
  width: 70vw;
  margin-bottom: 10rem;
}
.justIT__red {
  color: #8b0000;
}
.container {
  height: auto;
  padding: 0 10px;
  margin: 0 auto;
  align-items: center;
}

.navigation {
  display: flex;
  position: relative;
  justify-content: flex-end;
}

.icon:not(:last-of-type) {
  margin-right: 20px;
}

@media screen and (min-width: 480px) {
  .container {
    max-width: 480px;
    padding: 0 15px;
  }
  .justIt__image {
    width: 60vw;
    margin-bottom: 10rem;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
    padding: 0 15px;
  }
  .justIt__image {
    width: calc(768px * 0.6);
    margin-bottom: 8rem;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0 15px;
  }
}
