@font-face {
    font-family: WorkSans;
    src: url(WorkSans-VariableFont_wght.ttf);
}

body {
    background-color: #515151;
}

h1 {
    color: white;
    text-align: center;
    font-size: 6vw;
    letter-spacing: .15rem;
    font-weight: 650;
    font-family: WorkSans, Verdana, Geneva, Tahoma, sans-serif;
    text-shadow: .25vw .25vw .75vw black;
    margin-bottom: 2vw;
}

h2 {
    color: #FFC834;
    text-align: center;
    font-size: 5vw;
    letter-spacing: .05rem;
    font-family: WorkSans, Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 550;
    text-underline-offset: 1.5vw;
    margin-top: 1.5vw;
    margin-bottom: 0.4vw;
}

h3 {
    color: #FFC834;
    text-align: center;
    font-size: 2.75vw;
    letter-spacing: .15rem;
    font-weight: 550;
    font-family: WorkSans, Verdana, Geneva, Tahoma, sans-serif;
    margin-bottom: -1.5vw;
}

p {
    color: white;
    font-size: 2.1vw;
    letter-spacing: .03rem;
    font-weight: 550;
    line-height: 130%;
    font-family: WorkSans, Verdana, Geneva, Tahoma, sans-serif;
}

div.logointro {
    display: flex;
    justify-content: center;
    align-items: center;
}

div.introtext {
    text-align: center;
    text-wrap: nowrap;
    margin-left: 5vw;
}

div.logointro div {
    float: left;
}

div.services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2%;
}

div.servicecolumnone {
    float: left;
    text-align: center;
    text-wrap: balance;
    flex: 49%;
/*    height: 62vw;
/*    background-color: green; */
}

div.servicecolumntwo {
    float: left;
    text-align: center;
    text-wrap: balance;
    flex:49%;
/*    height: 62vw;
/*    background-color: blue; */
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 600px) {
    div.servicecolumnone, div.servicecolumntwo {
      flex: 100%;
      height: auto;
      max-width: 70%;
      margin-bottom: -2vw;
    }

    h3 {
        font-size: 3.5vw;
/*        font-size: 18px; */
    }

    p {
        font-size: 2.7vw;
        text-wrap: balance;
/*        font-size: 14px;*/
    }

    div.introtext {
        margin-left: 2vw;
    }
  }

@media screen and (min-width: 1200px) {
    h1 {
        font-size: 72px;
        margin-bottom: 27px;
    }

    h2 {
        font-size: 60px;
        text-underline-offset: 18px;
        margin-top: 18px;
        margin-bottom: 4px;
    }

    h3 {
        font-size: 33px;
        margin-bottom: -18px;
    }

    p {
        font-size: 25px;
    }

    div.introtext {
        margin-left: 60px;
    }
    
    div.logointro div {
        float: left;
    }
    
    div.services {
        gap: 2px;
    }
    
    div.servicecolumnone {
        float: left;
        flex: 30%;
        height: auto;
        max-width: 600px;
    /*    background-color: green; */
    }
    
    div.servicecolumntwo {
        float: right;
        flex: 30%;
        height: auto;
        max-width: 600px;
    /*    background-color: blue; */
    }
}