* {
  margin: 0;
  padding: 0;
}

body {
  background: #ffe4b5;
}

.container {
  display: flex;
  height: 100vh;
  justify-content: center;
}

.container>div {
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#veronica {
  max-width: 246px;
  height: auto;
}

#veronica img {
  max-width: 100%;
  height: auto;
  display: block;
}

#text-container {
  font-family: Segoe Print;
  font-size: 24px;
}

#voto {
  display: none;
  position: absolute;
  font-size: 36px;
  font-style: italic;
  margin-left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

#result-container {
  position: relative;
  margin-top: 10px;
}

.btn {
  display: inline-block;
  border: 2px solid #000;
  padding: 5px 10px;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  transition: all 300ms ease;
}

.btn:hover {
  background-color: #000;
  color: white;
}

#text1,
#text2 {
  font-family: Segoe Print;
  font-size: 24px;
  border: none;
  border-radius: 5px;
  outline: none;
}

#text1 {
  max-width: 120px;
}

#text2 {
  max-width: 73px;
}

@media (max-width:768px) {
  .container>div {
    flex-direction: column;
    align-self: flex-start;
  }

  #text-container {
    font-size: 18px;
  }

  #text1,
  #text2 {
    font-size: 1em;
  }

  #text1 {
    max-width: 92px;
  }

  #text2 {
    max-width: 58px;
  }

  #voto {
    font-size: 1.5em;
  }
}

#msg {
  display: none;
  position: fixed;
  width: 100%;
  background: #fff;
  border-bottom: 2px solid #000;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  text-align: center;
  padding: 3px;
}

.btn-home {
  display: block;
  position: absolute;
  top: -32px;
  right: 20px;
  width: 32px;
  height: 32px;
  color: #5a3e2b;
  transition: color 0.3s ease;
  animation: slide-bottom 1s ease-in 0.5s both;
}

.btn-home:hover {
  color: #7a5238;
}

.icon {
  width: 100%;
  height: 100%;
}

@keyframes slide-bottom {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(52px);
  }
}