* {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  font-size: 12px;
  line-height: 1.5;
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #000;
  background-color: #000;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100px);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.language-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0;
  text-align: center;
  max-width: 600px;
  width: 100%;
}
.logo-container {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
}
.main-logo {
  width: 100px;
  height: 100px;
}
.company-name {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: .05rem;
  color: #c5779e;
  margin-top: 1rem;
  margin-bottom: 0;
}
.language-selection {
  margin-bottom: 0;
}
.select-language {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .05em;
  color: #666;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.language-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.language-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem;
  min-width: 200px;
  background-color: rgba(31, 34, 64, 0);
  border: 2px solid #c5779e;
  color: #c5779e;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .05em;
  transition: all .3s ease;
  border-radius: 4px;
}
.language-btn:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.language-btn:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.language-name {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .language-buttons {
    flex-direction: row;
    gap: 2rem;
  }
  .company-name {
    font-size: 2.5rem;
  }
  .main-logo {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 480px) {
  .language-container {
    padding: 1rem;
  }
  .company-name {
    font-size: 1.5rem;
  }
  .main-logo {
    width: 100px;
    height: 100px;
  }
  .language-btn {
    min-width: 180px;
    padding: .875rem 1.5rem;
  }
  .language-name {
    font-size: 1rem;
  }
}
