* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgb(253, 243, 237);
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  font-size: 20px;
}

header,
main {
  padding: 20px;
}

main {
  line-height: 45px;
}

section.intro div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-image: url("https://png.pngtree.com/png-vector/20230901/ourmid/pngtree-afro-woman-icon-with-a-black-hair-color-vector-png-image_7023439.png");
  color: white;
}

div.button,
div#timer {
  display: flex;
  justify-content: center;
  align-items: center;
}

div.button a {
  background-color: #2b2b2b;
  padding: 10px;
  text-decoration: none;
  color: #ddd;
  border-radius: 5px;
  width: 35vw;
  text-align: center;
}

div.button a:hover {
  background-color: #a5a6aa;
  color: black;
  transition: all 0.3s;
}

div.images {
  text-align: center;
  margin: 1rem;
}

div#timer {
  padding: 30px 10px;
  font-size: 40px;
  /* width: 90vw; */
}

div#timer span {
  background-color: red;
  width: 200px;
  padding: 15px;
}

.fa {
  cursor: pointer;
  font-size: 30px;
  padding: 10px 0;
}

footer {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-family: "Courier New", Courier, monospace;
  padding: 2rem 1rem;

  & i {
    font-size: 20px;
    padding: 5px;
    text-decoration: none;
  }

  & .fa-whatsapp {
    color: green;
  }

  & .fa-instagram {
    color: red;
  }
}
