html {
    color: #ffffff;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section {
    position: relative;
    background-image: url('img/karat-bg.webp');
    background-position: center;
    background-size: cover;
    padding: 1rem 1rem 6rem 1rem;
        min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

section::after {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.75);
    top: 0;
    left: 0;
    bottom: 0;
    min-height: 100dvh;
    width: 100%;
    pointer-events: none;
}

.container {
    text-align: center;
    z-index: 99;
    max-width: 960px;
}

h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 400;
    line-height: 1.125;
    margin-bottom: 1.5rem;
}

#logo {
    width: clamp(15rem, 30vw, 20rem);
    margin-bottom: 2em;
    -webkit-user-drag: none;
    user-select: none;
}

.text-lg {
    font-size: clamp(1rem, 4vw, 1.5rem);
}

.contact-card {
    margin: 1.5rem 0 2rem 0;
}


address {
    font-style: normal;
}
.contact-card a {
    text-decoration: none;
    color: #ffffff;
    margin-top: 0.5rem;
    line-height: 1.25;
    font-size: clamp(1rem, 3vw, 1.25rem);
    display: inline-block;
    opacity: 0.6;
    transition: opacity 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

a:hover {
    opacity: 1;
}

.caption {
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-top: 2rem;
}