body {
    background-color: #e63e2c;
    min-width: 100vw;
    min-height: 100vh;
}


p {
    font-size: 1em;
    letter-spacing: 0.05em;
    color: white;
    font-family: "articulat-cf", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-size: 1em;
    letter-spacing: 0.05em;
    color: white;
    font-family: "articulat-cf", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: -14px;
}

.content {
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.vertical-center {
    width: 100vw;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: absolute;
    top: 45%;
    -ms-transform: translateY(-45%);
    transform: translateY(-45%);
}

.logo {
    max-width: 100vw;
    width: 720px;
    margin-bottom: 80px;
    display: inline;
}

a {
    position: relative;
    color: #ffffff;
    text-decoration: none;
  }
  
  a:hover {
    color: #ffffff;
  }
  
  a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  a:hover::before {
    transform: scaleX(1);
  }

@media only screen and (max-width: 720px) {

    .logo {
        max-width: 80vw;
    }

    a {
        position: relative;
        color: #000000;
        text-decoration: none;
      }

    p {
        font-size: 1.1em;
        line-height: 1.4;
    }

    h1 {
        font-size: 1.1em;
        line-height: 1.4;
    }

    .vertical-center {
        width: 100vw;
        margin-top: 20vh;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        position: absolute;
        top: 0;
        -ms-transform: translateY(0%);
        transform: translateY(0%);
    }
}