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

body {
  font-family: 'Roboto', sans-serif;
  background-color: #0d1b2a;
  margin: 0;
  user-select: none;
}

.container {
  margin-bottom: 2rem;
}

.container h1 {
  font-size: 4rem;
  text-align: center;
  color: #eee;
  padding: 1rem 0;
  margin-top: 0;
  margin-bottom: 0;
  background-color: #1b263b;
}

.container .container-description {
  font-size: 1rem;
  text-align: center;
  color: #ccc;
  padding: 0.75rem 2rem 2rem 2rem;
  margin-top: 0;
  background-color: #1b263b;
  border-bottom: 2px solid #ccc;
}

.container-projects {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.container-projects a {
  text-decoration: none;
  background-color: #1b263b;
  color: #eee;
  font-size: 2rem;
  margin: 2rem;
  padding: 2rem;
  border-radius: 1rem;
  transition: background-color 0.4s;
  width: 12rem;
  height: 14rem;
  text-align: center;
  box-shadow: 1px 1px 11px #0004;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.container-projects a:hover {
  background-color: #415a77;
  transition: background-color 0.2s;
  box-shadow: 1px 1px 11px #0008;
}

.container-projects a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 0 32px #415a7780;
  opacity: 80%;
}

.container-projects p {
  margin-bottom: 0;
  font-size: 1.5rem;
}

footer {
  background-color: #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer a {
  text-decoration: none;
  height: auto;
  font-size: 1.5rem;
  color: #0d1b2a;
  font-weight: 600;
  margin-top: 2rem;
}

footer a:hover {
  color: #0d1b2a99;
}

footer .container-social-icons {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 2rem;
}

footer .container-social-icons img {
  filter: invert(1);
}

footer .container-social-icons img:hover {
  filter: invert(0.8);
}

footer span {
  margin-bottom: 2rem;
  color: #415a77;
}
