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

body {
  font-size: 16px;
  font-family: Mulish;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(./assets/numbers.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.menu {
  display: flex;
  gap: 40px;
}
.menu-links {
  text-decoration: none;
  color: black;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 0 10px #ccc;
  background-color: rgb(237, 237, 237);
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  background-color: rgb(219, 219, 219);
}
h1 {
  font-size: 1.6em;
}

.img-header {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  box-shadow: 0 0 10px #ccc;
  margin-top: 0px;
}
.img-home {
  background-color: transparent;
  width: auto;
  height: 600px;
}

.boy {
  width: auto;
  height: 400px;
  z-index: 1;
  margin: auto;
  rotate: -10deg;
}
.four {
  width: auto;
  height: 500px;
  z-index: 1;
  rotate: 10deg;
  margin-right: 200px;
}

@media screen and (max-width: 768px) {
 .menu {
   display: flex;
   flex-direction: column;
   gap: 40px;
 }
 header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  background-color: rgb(219, 219, 219);
  gap: 20px;
}
.boy{
  height: 300px;
}
.four{
  height: 100px;
  margin-right: 0px;
}
}
