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

body, html {
  height: 100%;
  font-family: sans-serif;
}

.container {
  display: flex;
  height: 100vh;
  width: 100%;
  flex-direction: column;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blue {
  background-color: #0071B9;
}

.red {
  background-color: #EE252B;
}

.btn {
  background-color: #ffffff;
  border-radius: 32px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7em;
  padding: 0.3em 1.8em;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: 65px;
  border: 3px solid;
}

.btn.blue {
  color: #0C71C3;
  border-color: #0C71C3;
}

.btn.red {
  color: #e41d1a;
  border-color: #e41d1a;
}

.logo-ihop {
  width: 230px;
  position: absolute;
  bottom: 30px;
}

.logo-applebees {
  width: 210px;
  position: absolute;
  bottom: 25px;
}

.food-pancakes {
  max-width: 45%;
  height: auto;
}

.food-hamburguesa {
  max-width: 53%;
  height: auto;
}

.social-icons {
  position: absolute;
  bottom: 10px;
  display: flex;
  gap: 15px;
}

.social-icons a img.icon {
  width: 30px;
  height: 30px;
  transition: transform 0.2s ease;
}

.social-icons a img.icon:hover {
  transform: scale(1.1);
}


@media (min-width: 600px) and (max-width: 1023px) {
  .container {
    flex-direction: row;
  }
  
  .btn {
    font-size: 18px;
    padding: 0.2em 1.5em;
    top: 40px;
  }
  
.food-pancakes {
  max-width: 80%;
  height: auto;
}

.food-hamburguesa {
  max-width: 80%;
  height: auto;
}

  .logo-ihop, .logo-applebees {
    width: 180px;
    bottom: 20px;
  }
}

@media (max-width: 599px) {
  .container {
    flex-direction: column;
  }
  
  .panel {
    min-height: 50vh;
  }
  
  .btn {
    font-size: 16px;
    padding: 0.2em 1.2em;
    top: 30px;
  }
  
  .logo-ihop {
    width: 150px;
    bottom: 15px;
  }
  
  .logo-applebees {
    width: 140px;
    bottom: 15px;
  }
}

@media (min-width: 1024px) {
  .container {
    flex-direction: row;
  }
}