@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

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

body {
  background-color: #222;
}

header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100px;
  /* margin-right: 50px; */
  background-color: rgb(34, 34, 34, 0.8);
  color: white;

  position: sticky;
  top: 0;
  z-index: 1;
}

header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgb(179, 179, 179);
}

header img:hover {
  cursor: pointer;
  transform: scale(1.1);
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section {
  width: 80%;
  padding: 40px;
  margin-bottom: 10px;
  background-color: rgb(219, 219, 219);

  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.hobbies h2,
.resto h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.yo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: justify;
}

.yo-textos {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}

div {
  padding: 5px;
  margin: 5px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

div img {
  width: 200px;
  height: 200px;
  margin-bottom: 10px;
  padding: 5px;
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
}

h4 {
  font-size: larger;
  font-family: "Raleway", sans-serif;
}

footer {
  color: #ffffff;
  margin: 20px;
  text-align: center;
}
