@font-face {
    font-family: Signature;
    src: url('../fonts/signature.woff2') format('woff2'),
    url('../fonts/signature.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    flex-direction: column;
    background-size: 70vw auto;
    background-color: black;
    background-image: url('../images/watermark.png');
    background-position: center;
    background-repeat: no-repeat;
    color: whitesmoke;
    padding: 1rem;
    padding-bottom: 8rem;
}

main {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.title {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 1;
    overflow-wrap: anywhere;
}

.signature {
    font-family: Signature, sans-serif;
    font-size: 2rem;
    color: #8B8B8B;
    opacity: .5;
}

.fw-200 {
    font-weight: 200 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.comfortaa {
    font-family: 'Comfortaa', sans-serif;
}

.poppins {
    font-family: 'Poppins', sans-serif;
}

.role {
    font-size: clamp(1.1rem, 3vw, 2rem);
    margin-bottom: 0;
}

.footer {
    border-top: 1px solid white;
    background: rgba(0, 0, 0, 0.92);
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer h4 {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    body {
        padding-bottom: 13rem;
    }

    .signature {
        font-size: 1.5rem;
    }

    .footer {
        justify-content: center !important;
        text-align: center !important;
    }

    .footer > div {
        width: 100%;
        text-align: center !important;
    }
}
