@import url('https://fonts.googleapis.com/css2?family=Bad+Script&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');
html, body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #925e9e;
    margin: 0;
    padding: 0;
}

.row {
    display: flex;
    justify-content: space-between;
}
.col {
    width: 100%;
    box-sizing: border-box;
}
.half {
    width: 50%;
}
.quarter {
    width: 25%;
}
.threefourths {
    width: 75%;
}
.sixty {
    width: 60%;
}
img {
    max-width: 100%;
}

body {
    /* height: 100dvh; */
    background-image: url("./images/graduation-bg.jpg");
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: middle;
    background-size: auto 100dvh;
    background-attachment: fixed;
}

.padding {
    padding: 3rem 2rem;
}

.form-jacket {
    /* background-color: rgba(255, 255, 255, 0.25) */
}

h1 {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 5px;
    text-decoration-style: dotted;
}


.ibm-plex-sans {
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
.bad-script {
  font-family: "Bad Script", cursive;
  font-weight: 400;
  font-style: normal;
}


@media screen and (max-width: 639px) {
    body {
        background-image: url("./images/graduation-bg.jpg");
        background-repeat: no-repeat;
        background-position-x: right;
        background-position-y: bottom;
        background-size: auto 100dvh;
        background-attachment: fixed;
    }
    .row {
        display: block;
    }
    hr {
        display: none;
    }
    .mobile-margin {
        margin-top: 20rem;
    }
    h1 {
        margin-top: 10rem;
    }
    .half, .quarter, .threefourths, .sixty {
        display: block;
        width: 100%;
        background-color: #925e9ecc;
        border-top: 1px solid #fff;
    }
    .half:last-of-type {
        border-bottom: 1px solid #fff;
    }
}