body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: center;
    padding: 40px;
    width: 100%;

    @media (max-width : 768px) {
        align-items: center;
        justify-content: center;
    }

    h1 {
        position: relative;
        margin: 0;

        @media only screen and (max-width : 768px) {
            margin-top: -150px
        }
    }

    span.translucent-text {
        font-weight: 800;
        font-size: 22vw;
        color: #DAD8D8;
        opacity: 0.3;
        @media only screen and (max-width : 768px) {
            font-size: 30vw;
        }
    }

    span.overlay-text {
        position: absolute;
        bottom: 20;
        left: 40;
        font-weight: 900;
        font-size: 6.6vw;
        color: black;
        @media only screen and (max-width : 768px) {
            width: 100vw;
            left: 50%;
            transform: translateX(-50%);
        }
    }

    p {
        font-weight: 500;
        font-size: 2.5vw;
        color: #333333;
        margin: -32px 0px 0px 40px;
        @media only screen and (max-width : 768px) {
            font-size: 4.5vw;
            margin: 0;
        }
    }

    a {
        padding: 14px 30px;
        margin: 40px 0px 0px 40px;
        font-size: 18px;
        border-radius: 4px;
        border: 0 !important;
        transition: padding .5s ease;
        transform: translateX(-5px);
        overflow: hidden;
        box-shadow: none !important;
        white-space: normal;
        width: 100%;
        max-width: 253px;
        background-color: black;
        color: white;
        text-decoration: none;
        @media only screen and (max-width : 768px) {
            margin-left: 0;
        }
    
        &:hover,
        &:focus {
            padding-left: 20px;
            padding-right: 40px;
    
            &::after {
                right: 20px;
                opacity: 1;
            }
        }
    
        &::after {
            content: '\f054';
            font-family: "Font Awesome 6 Pro";
            display: block;
            position: absolute;
            right: -15px;
            transform: translateY(-50%);
            top: 50%;
            transition: right .5s ease, opacity .5s ease;
            opacity: 0;
            font-weight: 700;
            font-size: calc(100% - 5px);
            text-align: right;
            width: 10px;
        }
    }
}

.background-image-container {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;;
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: bottom right;
}

