body {
  background-color: #18191c;
  text-align: center;
  font-family: "Lato", "sans-serif";
  max-height: 100vh;
  overflow: hidden;
}

.brand {
  text-align: center;
  max-width: 800px;
}

p {
  font-size: 24px;
  color: white;
}

.buttons {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

a {
  padding: 10px 30px;
  background-color: #1ea7f4;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: large;
  border-radius: 5px;
  margin: 10px 30px;
  text-decoration: none;
}

a:last-child {
  background-color: #5865f2;
}

.rectTop {
  position: absolute;
  width: 600px;
  height: 600px;
  left: -222.1px;
  top: -483px;

  background: #20a7f4;
  transform: rotate(22.22deg);
}

.rectBot{
    position: absolute;
width: 600px;
height: 600px;
right: -380px;
bottom: -500px;

background: #20A7F4;
transform: rotate(13.5deg);
}

@media (max-width: 1080px) {
  .brand {
    max-width: 400px;
  }
  p {
    font-size: 18px;
  }
  .buttons {
    flex-wrap: wrap;
  }
  a {
    font-size: 14px;
  }

  .rectBot {
      visibility: hidden;
  }
  .rectTop{
      visibility: hidden;
  }
}
