body {
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.main {
    background-color: black;
    font-family: 'Montserrat';
    /* height: 100vh; */
    height: 100%;
}

p {
    color: white;
    font-size: 1.5rem;
}

.red {
    color: rgb(255, 115, 0);
    font-weight: 400;
    font-size: 2rem;
}

.green-text {
    font-weight: 700;
    color: rgb(0, 255, 25);
    font-size: 2.5rem;
    text-transform: uppercase;
}

.top, .bottom {
    height: 5%;
}

.middle {
  height: 90%;
}

.image {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.logo {
  width: 220px;
  position: relative;
  bottom: 1rem;
}

@media only screen and (max-width: 576px) {
  .logo {
    width: 200px;
  }
}