:root {
  --accent-color: #0076ff;
  --bg-color: #f3f3f3;
  --text-grey: #858383;
  --text-dark-grey: #333333;
}

body {
  background-color: var(--bg-color);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

a {
  text-decoration: none;
  color: white;
}

.container {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.navbar {
  margin-top: 1rem;

  display: flex;
}


.navbar nav a {
  margin: 1rem;
  color: var(--text-grey);
}

.nav-btn {
  margin-left: auto;
  margin-right: 20px;
}
.nav-btn a {
  margin: 10px;
}
.dark {
  color: var(--text-dark-grey);
}
.button {
  background: var(--accent-color);
  color: whitesmoke;
  padding: 0.5rem 1rem;
  border-radius: 7px;
  border: none;
  outline: none;
}

button i {
  margin: 0 5px;
}
.empty-button {
  padding: 0.5rem 1rem;
  border-radius: 7px;
  border: none;
  outline: none;
}

.main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 60vh;

  padding: 2rem 0rem;
}

.main .left h1 {
  font-size: xxx-large;
  line-height: 4rem;
}
.main p {
  color: var(--text-grey);
}
.main .right {
  display: flex;
  justify-content: center;
  align-content: center;
}

footer {
  margin-top: 4rem;
}
footer .footer {
  display: flex;
  justify-content: space-evenly;
}
.footer a {
  color: var(--text-grey);
}

a img {
  width: 80px;
}

@media (max-width: 1015px)
{

}

@media (max-width: 1015px) {
  .container {
    width: 80%;
  }
  .navbar nav a{
    margin: 0.5rem;
  }
}
@media (max-width: 879px) {
  .container {
    width: 90%;
  }
}
@media (max-width: 787px) {
  .container {
    width: 100%;
  }
  .main
  {
    grid-template-rows: 70vh;
  }
}
