body {
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    padding: 50px 20px 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

.content-fade {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: calc(100vh - 70px);
    opacity: 0;
    transition: opacity 1s ease-in-out;
    padding: 0 20px;
    margin-top: 35px;
}

.content-fade.fade-in {
    opacity: 1;
}

.contact-container {
    font-size: 1.4rem;
    width: 700px;
    max-width: 700px;
    padding: 40px;
    border-radius: 8px;
    text-align: left;
    z-index: 3;
    position: relative;
    margin: 0 auto;
    color: #888884;
}


.contact-container p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.contact-container p:last-child {
    margin-bottom: 0;
}

.email-link {
    font-size: 20px;
    color: #f5896b;
    text-decoration: none;
    font-weight: bold;
}

.email-link:hover {
    text-decoration: underline lightgrey;
}

.left-image,
.right-image {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.left-image img {
    position: absolute;
    height: 70%;
    width: auto;
    transform: translate(-50%, -50%) rotate(15deg);
    opacity: 0.1;
    object-fit: cover;
    mask-image: linear-gradient(to right, transparent, black 25%, black 100%, transparent);
}

.right-image img {
    position: absolute;
    height: 100%;
    width: auto;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    object-fit: cover;
    mask-image: linear-gradient(to right, transparent, black 25%, black 100%, transparent);
}

.left-image img {
    top: 70%;
    left: clamp(10%, 15%, 40%);
}

.right-image img {
    top: 54%;
    left: clamp(60%, 85%, 90%);
}

.contact-me-title {
    position: absolute;
    left: auto;
    top: 40%;
    font-size: 1.5rem; 
    font-weight: bold;
    color: #888884; 
    z-index: 5; 
    pointer-events: none; 

@media (max-width: 600px) {

    .content-fade {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        min-height: calc(100vh - 70px);
        opacity: 0;
        transition: opacity 1s ease-in-out;
        padding: 0 20px;
        margin-top: -50%;
    }

    .contact-container {
        max-width: 90%;
        padding: 30px;
        margin-top: 150px;
        text-align: left;
    }

    .contact-container p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .left-image img {
        top: 70%;
        left: clamp(5%, 15%, 50%);
        height: 40%;
    }

    .right-image img {
        top: 55%;
        left: clamp(50%, 100%, 90%);
        height: 110%;
    }

    .contact-me-title {
        margin-top: -30%;
    }
}

.newsite_pages {
    font-size: .5;
}