/* Add custom fonts */
@font-face {
  font-family: 'avenir';
  src:
    url('./assets/fonts/AvenirNext-Bold.ttf') format('ttf'),
    url('./assets/fonts/AvenirNext-DemiBold.ttf') format('ttf'),
    url('./assets/fonts/AvenirNext-Medium.ttf') format('ttf'),
    url('./assets/fonts/AvenirNext-Medium.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
p {
  text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}
#root,
#__next {
  isolation: isolate;
}

body {
  position: relative;
  background: #121212 url('./assets/vectors/WaveBackground.svg') no-repeat top
    right;
  margin: 0;
  font-family: 'avenir', sans-serif;
  text-align: center;
}

/***********/
/* Nav Bar */
/***********/
.top-nav {
  display: flex;
  background-color: transparent;
  padding: 20px 0;
  margin: 0 auto;
  max-width: 1136px;
  padding-left: 24px;
}

.logo {
  height: 28px;
}

/***********/
/* Content */
/***********/
.center-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 64px);
}

.content {
  padding: 20px;
  padding-top: 60px;
}

.maintenance-icon {
  position: relative;
  transform: translateX(-50%);
  height: 272px;
  width: 272px;
  margin-bottom: -10px;
  left: 50%;
  z-index: 1;
}

.maintenance-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.maintenance-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #121212);
  pointer-events: none;
  z-index: 1;
}

/*********/
/* Title */
/*********/
h1 {
  margin: 20px 0;
  color: white;
  z-index: 2;
  font-weight: 600;
}

/***************/
/* Description */
/***************/
h5 {
  color: white;
  margin: 20px 0;
  font-weight: normal;
  padding-bottom: 80px;
}

/************************/
/* Social Media Buttons */
/************************/
.social-media-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 2;
}

.social-media-link {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.social-media-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.social-media-link img {
  filter: invert(88%) sepia(5%) saturate(0%) hue-rotate(180deg) brightness(95%)
    contrast(90%);
}

/*****************************/
/* Background Circles Bottom */
/*****************************/
.background-circles {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  width: 200px;
  height: 200px;
}

.red-circle {
  background-color: #ff4040;
  bottom: 0;
  left: 0;
}

.blue-circle {
  background-color: #1a4f8a;
  bottom: 10px;
  left: 150px;
}

/**********/
/* Mobile */
/**********/
@media (max-width: 376px) {
  .logo {
    padding-left: 20px;
  }

  .maintenance-icon {
    height: 156px;
    width: 156px;
  }

  .social-media-buttons {
    padding-top: 50px;
  }
  .social-media-link img {
    width: 16px;
    height: 16px;
  }
}

/**********/
/* Tablet */
/**********/
@media (max-width: 780px) {
  body {
    background-size: 100%;
  }
  .logo {
    padding-left: 40px;
  }

  .maintenance-icon {
    height: 203px;
    width: 203px;
  }

  .social-media-buttons {
    padding-top: 72px;
  }
}

/***********/
/* Desktop */
/***********/
@media (min-width: 781px) {
  h5 {
    padding-left: 130px;
    padding-right: 130px;
  }

  .social-media-buttons {
    padding-top: 0px;
  }
  .social-media-link img {
    width: 20px;
    height: 20px;
  }
}
