@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;
}

body {
    font-family: 'Playfair Display', serif;
    display: grid;
    background-color: #FFFFFF;
    background-image: linear-gradient(43deg, #e08b2a 0%, #3f8a97 46%, #e55604 100%);
    align-content: center;
    min-height: 100vh;
}

section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    width: 75vw;
    margin: 0 auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 12px;
}

.image {
    background-color: #12192c;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 12px 0 0 12px;
    padding: 20px;
    text-align: center;
    color: white;
}

.image h2 {
    margin-top: 0;
}

.image img {
    height: 50vh;
    margin-top: 20px;
}

.content {
    background-color: #18777a;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-radius: 0 12px 12px 0;
    color: #ffffff;
}

.content h2 {
    text-transform: uppercase;
    font-size: 36px;
    letter-spacing: 6px;
    opacity: 0.9;
}

.content span {
    height: 0.5px;
    width: 80px;
    background: #777;
    margin: 30px 0;
}

.content p {
    padding-bottom: 15px;
    font-weight: 300;
    opacity: 0.7;
    width: 60%;
    text-align: center;
    margin: 0 auto;
    line-height: 1.7;
    color: #ffffff;
}

.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;
    color: #fff;
    text-decoration: none;
}

.links li:hover {
    border-color: #e55604;
}

.vertical-line {
    height: 30px;
    width: 3px;
    background: #e55604;
    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: #e55604;
    cursor: pointer;
}

.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;
}

/**************** Media Queries ****************/

@media (max-width: 1200px) {
    section {
        width: 85vw;
    }
    .content h2 {
        font-size: 32px;
    }
    .content p {
        width: 70%;
    }
    .links li {
        width: 140px;
    }
}

@media (max-width: 900px) {
    section {
        grid-template-columns: 1fr;
        width: 100%;
        border-radius: none;
    }
    .image {
        height: 100vh;
        border-radius: none;
    }
    .content {
        height: 100vh;
        border-radius: none;
    }
    .content h2 {
        font-size: 20px;
        margin-top: 50px;
    }
    .content span {
        margin: 20px 0;
    }
    .content p {
        font-size: 14px;
        width: 80%;
    }
    .links li a {
        font-size: 14px;
    }
    .links {
        margin: 5px 0;
    }
    .links li {
        padding: 6px 10px;
    }
    .icons li i {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .content h2 {
        font-size: 18px;
        letter-spacing: 4px;
    }
    .content p {
        font-size: 12px;
        width: 90%;
    }
    .links li {
        width: 120px;
    }
    .icons li i {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .content h2 {
        font-size: 16px;
        letter-spacing: 3px;
    }
    .content p {
        font-size: 10px;
        width: 95%;
    }
    .links li {
        width: 100px;
    }
    .icons li i {
        font-size: 12px;
    }
}
