body {
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.owl-carousel {
    height: 100%;
}

.owl-carousel img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
.box {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto;
    pointer-events: none;
}
.spacer {
    align-content: space-between;
}
.box-white {
    background-color: rgba(255, 255, 255, 0.5); 
    height: 100%;
    width: 35%;
}
.row {
    position: relative;
    z-index: 1;
    height: 100%;
}
.logo {
    justify-content: center;
    display: flex;
    margin-top: 25vh;
}
.logo img{
    max-width: 250px;
    margin: auto;
}
h1 {
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}

h2 {
    font-family: 'Times New Roman', Times, serif;
    color: grey;
    text-align: center;
    font-size: 23px;
    margin-bottom: 10vh;
}

p, a {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: black;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
}

a:hover {
    color: rgb(97, 97, 97);
}

.links p,a{
    font-size: 14px;
    pointer-events: all;
}

@media screen and (max-width: 768px) {
    body {
        height: auto;
    }
    .box-white {
        width: 100%;
    }
    .logo {
        justify-content: center;
        display: flex;
        margin-top: 10vh;
    }
    .links {
        margin-bottom: 20px;
    }
}