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

:root {
  --gray: #242424;
  --black: #000000;
  --white: #ffffff;
  --blue: #45BDED;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem .5rem;
  background-color: var(--gray);
  color: var(--white);
  margin: 0 auto;
}

body, input, button, textarea {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--white);
}

h1, h2, h3, h4, h5, h6, strong {
  font-weight: 600;
}

ul, a {
  text-decoration: none;
  list-style: none;
  color: var(--white);
  cursor: pointer;
}

button {
  cursor: pointer;
}

@keyframes slide-bottom {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}

@keyframes slide-top {
  0% {
    top: 0;
  }
  100% {
    top: -100%;
  }
}

.slide-bottom {
	-webkit-animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.slide-top {
	-webkit-animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@media (min-width: 1280px) {
  body {
    max-width: 1080px;
  }
}