@import url('https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&family=Comfortaa:wght@300..700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Comfortaa", sans-serif;
}


body {
  background-color: #0E0E0E;
  color: #F5F5F5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.background {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom, rgba(255, 209, 102, 0.05), transparent 70%);
  background-image: url('../img/banner-bg.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.30;
  z-index: 0;
}

.container {
  position: relative;
  text-align: center;
  z-index: 1;
  max-width: 600px;
  width: 90%;
  padding: 1.5rem;
}

.logo {
  max-width: 280px;
  margin: 0 auto;
  display: block;
}

.contacts {
  display: flex;
  justify-content: space-evenly;
  color: #FFD166;
  -webkit-text-decoration: none;
  text-decoration: none;
}

/* Remove iOS Safari's default underline/link style */
.contacts a {
  color: #FFD166;
  text-decoration: none;
}

.pr-8{
  padding-right: 10px;
}

.footer {
  position: absolute;
  bottom: 1.5rem;
  text-align: center;
  width: 100%;
  font-size: 0.8rem;
  color: #666;
}
