/* 
Colors
#ead41c js yellow
#4f5b66 grey
#343d46
*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  background-color: #4f5b66;
  color: #fff;
}

header,
section {
  padding: 0 1rem;
}

a {
  text-decoration: none;
  color: #fff;
}

.container {
  margin: 0 auto;
  padding: 1rem;
}

/* Navbar */
.navbar .container {
  background-color: #ead41c;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar .logo {
  color: #333;
  font-size: 40px;
}

/* Header */
header .container {
  width: 1100px;
  background-color: #333;
  padding: 3rem 6rem;
  margin: 1rem auto;
  border-radius: 1rem;

  display: flex;
  justify-content: center;
}

header p {
  padding: 1rem 2rem;
  color: #333;
  background-color: #ead41c;
  border-radius: 1rem;
  font-size: 30px;
  font-weight: bold;
}

/* Section */
section .container {
  width: 1100px;
  background-color: #333;
  margin: 1rem auto;
  border-radius: 1rem;

  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem;
}

section .main-text {
  color: #ead41c;
  font-size: 48px;
  margin-bottom: 1rem;
}

section img {
  border-radius: 1rem;
  width: 50%;
  align-self: center;
}

section a:hover .container {
  box-shadow: 0 0 1rem #fff;
}

/* Footer */
footer .container {
  padding: 2rem 4rem;
  background-color: #ead41c;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

footer a {
  color: #333;
  font-size: 1.25rem;
}

footer a:hover {
  color: #fff;
}

footer i {
  font-size: 2rem;
}

footer i:hover {
  color: #fff;
}
