* {
  margin: 0;
  padding: 0;

  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  background-color: #eeeeee;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background-color: #202020;

  padding-left: 12px;
  padding-right: 12px;

  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}

.navbar a {
  color: white;
}

.navbar-actions a {
  margin-right: 15px;
  margin-left: 15px;
  font-size: 17px;
  letter-spacing: 1px;
  text-decoration: none;
  transition-duration: 250ms;
}

.navbar-actions a:hover {
  text-decoration: underline;
}

.main {
  margin-top: 25px;
}

.home-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 2% 50px;
}

.home-box-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-box-title {
  text-decoration: underline;
  font-weight: bold;
}

.home-box-description {
  margin-top: 5px;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.home-box-image {
  border: solid 0;
  border-radius: 8px;
}

.footer {
  background-color: #202020;

  padding: 12px 12px;
  color: white;
}

.footer span {
  color: white;
  margin-right: 15px;
  margin-left: 15px;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  transition-duration: 250ms;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer p {
  color: white;
  font-weight: bold;
}

.footer .contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .contact .link {
  display: grid;
  gap: 7px;
}

.footer .social {
  display: flex;
  gap: 20px;
  margin-right: 10px;
}

.footer .social i {
  font-size: 24px;
}

.footer .copyright {
  text-align: center;
  font-size: 16px;
}
