* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html, body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.container, .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.logo {
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 256px;
  height: 256px;
  text-align: center;
  border-radius: 5px;
}

.container {
  background: #200200A1;
  color: white;
}

.container .content {
  position: absolute;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  max-height: 80vh;
  overflow: hidden;
  width: 90vw;
  text-shadow: 0 0 10px black;
}

.container1 .content1 {
  padding-top: 10%;
  position: absolute;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%, -50%);
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  max-height: 80vh;
  overflow: hidden;
  width: 90vw;
}

.container .content .header {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 3em;
}
.container .content .preHeader {
  font-weight: 200;
  font-size: 1.75em;
  margin: 2px;
}

.container .content .header1 {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1em;
}

.bg {
  background-image: url(images/bg.png);
  background-position: center;
  background-size: cover;
}

button {
  max-width: 320px;
  display: flex;
  overflow: hidden;
  position: relative;
  padding: 0.875rem 72px 0.875rem 1.75rem;
  background-color: rgba(88,101,242,1);
  background-image: linear-gradient(to top right,rgb(46, 56, 175),rgb(82, 93, 218));
  color: #ffffff;
  font-size: 15px;
  line-height: 1.25rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  align-items: center;
  border-radius: 0.5rem;
  gap: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: none;
  transition: all .6s  ease;
}

button span {
  background-color: rgb(82, 93, 218);
  display: grid;
  position: absolute;
  right: 0;
  place-items: center;
  width: 3rem;
  height: 100%;
}

button span svg {
  width: 1.5rem;
  height: 1.5rem;
}

button:hover {
  box-shadow: 0 4px 30px  rgba(4, 175, 255, .1), 0 2px 30px rgba(11, 158, 255, 0.06);
}

.links {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
}

.links a {
  color: #c66464;
  text-decoration: none;
}

.links a:hover {
  transition: 0.2s all ease;
  color: #c66464;
}

.links ul {
  list-style-type: none;
}

.links li {
  text-align: center;
  display: inline-block;
  margin-right: 0;
}

.links li:last-child {
  text-align: center;
  margin-right: 0;
}
