:root {
  --font-size-small: 0.8rem;
  --font-size-medium: 1rem;
  --font-size-large: 1.2rem;
  --font-size-xlarge: 1.4rem;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
}

.main-container {
  background: url(../img/bg.jpg) no-repeat 50% 50% / cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 15px;
}
.top-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.social-icons-container {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.main-container {
  text-align: center;
}

.header-text {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.logo {
  margin: 0 auto;
  font-size: 0;
  text-align: center;
}
.bottom-container {
  text-align: center;
  color: #fff;
}
.footer-text {
  font-size: var(--font-size-large);
}
