body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10vh;
  gap:1rem;
}
.logo {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.logo img {
  height: 20rem;
}
.text {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.text img {
  width: 75%;
}
.languages {
  display: flex;
  gap: 10px;
  padding: 1rem;
}
.languages a {
  color: whitesmoke;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  text-decoration: none;
  background-color: orangered;
  padding: 1rem 2rem;
  border-radius: 1rem;
  transition: 0.3s;
}
.languages a:hover {
  background-color: orange;
}
