* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: montserrat, sans-serif;
}

header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  background-image: url("https://cdn.discordapp.com/attachments/859558611386236948/860913225095839784/cdn.png");
  background-size: cover;
  background-position: center;
  position: relative;
}
header:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-color: rgba(34, 34, 34, 0.5);
}
header .content {
  position: relative;
  z-index: 1;
}
header .content h1 {
  color: #FFF;
  font-size: 28px;
  font-weight: 900;
}
header .content h1 span {
  font-weight: 400;
}
@media screen and (min-width: 480px) {
  header .content h1 {
    font-size: 36px;
  }
}
@media screen and (min-width: 768px) {
  header .content h1 {
    font-size: 42px;
  }
}
@media screen and (min-width: 1024px) {
  header .content h1 {
    font-size: 56px;
  }
}
@media screen and (min-width: 1280px) {
  header .content h1 {
    font-size: 72px;
  }
}
header .content h2 {
  color: #FFF;
  font-size: 42px;
  font-weight: 900;
  margin: 30px 0px;
}
@media screen and (min-width: 480px) {
  header .content h2 {
    font-size: 56px;
  }
}
@media screen and (min-width: 768px) {
  header .content h2 {
    font-size: 72px;
  }
}
@media screen and (min-width: 1024px) {
  header .content h2 {
    font-size: 96px;
  }
}
@media screen and (min-width: 1280px) {
  header .content h2 {
    font-size: 128px;
  }
}
header .content .countdown {
  color: #FFF;
  font-size: 36px;
  font-weight: 400;
}
@media screen and (min-width: 480px) {
  header .content .countdown {
    font-size: 42px;
  }
}
@media screen and (min-width: 768px) {
  header .content .countdown {
    font-size: 56px;
  }
}
@media screen and (min-width: 1024px) {
  header .content .countdown {
    font-size: 72px;
  }
}
@media screen and (min-width: 1280px) {
  header .content .countdown {
    font-size: 88px;
  }
}

header .content .hmd1 {
  color: #FFF;
  font-size: 14px;
  font-weight: 100;
}
@media screen and (min-width: 480px) {
  header .content .hmd1 {
    font-size: 42px;
  }
}
@media screen and (min-width: 768px) {
  header .content .hmd1 {
    font-size: 56px;
  }
}
@media screen and (min-width: 1024px) {
  header .content .hmd1 {
    font-size: 72px;
  }
}
@media screen and (min-width: 1280px) {
  header .content .hmd1 {
    font-size: 39.5px;
  }
}



/*# sourceMappingURL=main.css.map */

/*BUTTONS*/

/* BUTTONS */ 
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html, body {
  height: 100%;
}

.container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

}

.buttons {
  display: flex;
  flex-direction: column;
  
}

.btn {
text-decoration: none;
padding: 20px 50px;
font-size: 1.25rem;
position: relative;
margin: 32px;

}

/* button 1 */ 


btn-1 {
color: #fff;
}

.btn-1::after,
.btn-1::before {
border: 3px solid #fff;
content: "";
position: absolute;
width: calc(100% - 6px);
height: calc(100% - 6px);
left: 0;
bottom: 0;
z-index: -1;
transition: transform 0.3s ease;
}

.btn-1:hover::after {
transform: translate(-5px, -5px);

}

.btn-1:hover::before {
transform: translate(5px, 5px);
}

 
/* button 2 */ 


btn-2 {
color: #fff;
}

.btn-2::after,
.btn-2::before {
border: 3px solid #fff;
content: "";
position: absolute;
width: calc(100% - 6px);
height: calc(100% - 6px);
left: 0;
bottom: 0;
z-index: -1;
transition: transform 0.3s ease;
}

.btn-2:hover::after {
transform: translate(-5px, -5px);
}

.btn-2:hover::before {
transform: translate(5px, 5px);
}
