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

html,
body {
  height: 100%;
}

body, a {
  font-family: "Work Sans", sans-serif;
}

body {
  font-size: 20px;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
}

#logo-container {
  z-index: 1;
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 100px;
}

#logo {
  width: 500px;
  height: 142px;
  max-width: 70vw;
}


#yellow {
  position: fixed;
  background-color: #f3c549;
  box-shadow: inset grey;
  top: -38vw;
  left: -100vh;
  right: -100vh;
  bottom: -35vw;
  transform: rotate(45deg) translateX(48%);
  box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.2);
}

main {
  flex: 1;
  padding: 350px 20vh 50px 30vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}


#contacto {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.contacto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: black;
  text-decoration: none;
}

.contacto:visited {
  color: black;
}

.contacto:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contacto img {
  width: 20px;
}

#propuesta-btn {
  font-size: 20px;
  border: 1px solid white;
  border-radius: 20px;
  background-color: white;
  color: #f3c549;
  padding: 10px 20px;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  font-weight: 500;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  text-decoration: none;
  white-space: nowrap;
}

#propuesta-btn:hover {
  box-shadow: 3px 4px 3px rgba(0,0,0,0.2);
}

@media screen and (max-width: 1080px) {
  #yellow {
    display: none;
  }

  body {
    flex-direction: column;
  }

  main {
    background-color: #f3c549;
    box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.2);
    padding: 50px 0;
    align-items: center;
  }

  #logo-container {
    flex: unset;
    padding: 50px 0;
  }
}
