﻿

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    margin: 0 auto;
    box-shadow: 0 1px 0px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 12px
}

.image {
    display: flex;
    border-radius: 12px 0 0 12px;
}

    .image img {
        height: 50vh;
        margin: 50px auto
    }

.content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-radius: 0 12px 12px 0;
    color: #fff;
    margin-top: 20px;
}

    .content h2 {
        text-transform: uppercase;
        font-size: 36px;
        letter-spacing: 6px;
        opacity: 0.9;
    }

    .content span {
        height: 0.5px;
        width: 80px;
        margin: 0px 0;
    }

    .content p {
        padding-bottom: 15px;
        font-weight: 300;
        color: black;
        width: 75%;
        margin: 0 auto;
        line-height: 1.7;
    }

.links {
    margin: 15px 0;
}

    .links li {
        border: 2px solid #4158D0;
        list-style: none;
        border-radius: 5px;
        padding: 10px 15px;
        width: 160px;
        text-align: center;
    }

        .links li a {
            text-transform: uppercase;
            text-decoration: none;
        }

        .links li:hover {
            border-color: #C850C0;
        }

.vertical-line {
    height: 30px;
    width: 3px;
    background: #C850C0;
    margin: 0 auto;
}

.icons {
    display: flex;
    padding: 15px 0;
}

    .icons li {
        display: block;
        padding: 5px;
        margin: 5px;
    }

        .icons li i {
            font-size: 26px;
            opacity: 0.8;
        }

            .icons li i:hover {
                color: #C850C0;
                cursor: pointer;
            }


/*****************/


@media only screen and (max-width: 600px) {
    .content h2 {
        margin-top: 50px; /* Adjust this value as needed */

        margin-left: 20px;
    }
}

    @media(max-width: 900px) {
        section {
            grid-template-columns: 1fr;
            width: 100%;
            border-radius: none;
        }

        .image {
            border-radius: none;
        }

        .content {
            border-radius: none;
        }

            .content h2 {
                font-size: 20px;
                margin-top: 50px;
            }

            .content span {
                margin: 20px 0;
            }

            .content p {
                font-size: 14px;
            }

        .links li a {
            font-size: 14px;
        }

        .links {
            margin: 5px 0;
        }

            .links li {
                padding: 6px 10px;
            }

        .icons li i {
            font-size: 15px;
        }
    }

    .credit {
        text-align: center;
        color: #000;
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    }

        .credit a {
            text-decoration: none;
            color: #000;
            font-weight: bold;
        }

 
