@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;700&display=swap");

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

body {
  background-color: #090909;
  font-family: "Maven Pro", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: auto;
  padding: 24px;
}

h1 {
  color: #eeeeee;
  font-size: 2.6em;
}

p {
  color: #999999;
  max-width: 400px;
  margin-bottom: 32px;
  margin-top: 12px;
  font-size: 1.2em;
  line-height: 1.4em;
}

.buttons {
  display: flex;
  flex: 1;
}

.buttons a {
  display: inline;
  text-decoration: none;
  padding: 8px 24px;
  font-size: 1.4em;
  border-radius: 2px;
  width: 50%;
  text-align: center;
}

.buttons a:nth-child(1) {
  background-color: #eeeeee;
  color: #090909;
}

.buttons a:nth-child(2) {
  color: #eeeeee;
  border: 1px solid #eeeeee;
  margin-left: 12px;
}

img {
  max-width: 304px;
}

@media (max-width: 650px) {
  .container {
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
  }

  .container img {
    max-width: 156px;
    margin-bottom: 32px;
  }
}

.copy {

  margin-top: 24px;
  color: #fff;
}

.copy a {
  color: #fff;
}

.ads-728-90 {
  margin-bottom: 24px;
  padding: 0 24px;
}

.ads-728-90 iframe {
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
  margin: auto;
  border-radius: 4px;
  max-width: 100%;
}

@media (max-width: 440px) {
  body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .container {
    height: 100%;

  }

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

  .buttons a {
    width: 100%;
  }

  .buttons a:nth-child(2) {
    margin-left: 0;
    margin-top: 24px;
  }

  .copy {
    position: relative;
    text-align: center;
    left: 0;
    transform: none;
  }
}