body {
    font-family: 'Playfair Display', serif;
    background:#2e2e2e ;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
}
.grid {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    grid-gap: 64px;
}
.grid-2columns {
    grid-template-columns: 1fr 1fr;
}
.grid-3columns {
    grid-template-columns: 1fr 1fr 1fr;
}
.text-center {
    text-align: center;
}
.card {
    font-weight: 400;
    font-size: 16px;
    background-color: white;
    padding: 32px;
}
.card img {
    width: 100%;
    padding: 0;
    height: 200px;
    object-fit: cover;
}
.card ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.card ul li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.card ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #ceb4b4;
}
.card-media {
    display: flex;
  
    margin-bottom: 16px;
}

.card-media img,
.card-media iframe {
    width: 50%;
    height: 200px;
    object-fit: cover;
}
.btn {
    display: inline-block;
    background-color: #ceb4b4;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 16px;
}

.btn:hover {
    background-color: #2e2e2e;
    transition: all 0.3s ease-in-out;
}
.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    padding: 0;
    border-radius: 6px;
}
section {
    max-width: 100%;
    padding: 100px 0;
}
section img {
    width: 70%;
    height: auto;
    padding:0 80px;
}
section.secondary {
    background: #ceb4b4;
    padding: 80px 0;
}
header {
    background-image:linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url(../images/london.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 200px 0;

}
header h1 {
    font-weight: 700;
    font-size: 96px;
    line-height: 1;
    margin:30px 0;
}
header h2 {
    font-weight: 400;
    font-size: 40px;
    line-height: 1.5;
    margin: 0;
}
header h3 {
    font-weight: 900;
    font-size: 24px;
    line-height: 1.5;
    margin: 0;
}
header a {
    color: #272044;
    background: white;
    text-align: center;
    display: inline-block;
    padding: 16px 32px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
}

header a:hover {
    background-color: rgb(228, 170, 170);
    color: black;
    transition: all 0.3s ease-in-out;
}
main {
    background-color: white;

}
main h2 {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 5px;
    opacity: 0.8;
    color: #2e2e2e;
    text-transform: uppercase;
    margin: 0;
}
main h3 {
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    color: #2e2e2e;
    margin: 10px 0;
}
main p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #2e2e2e;
}
footer {
    background-image:linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url(../images/london-footer.jpg);
    color: white;
    background-repeat: no-repeat;
    background-size: cover;
}
footer h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
}
footer p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-right: 20px;
}
footer ul {
    padding: 0;
    color: white;
    list-style: none;
}
footer section {
    padding: 100px 64px;
}
footer a {

    color: rgb(245, 215, 215);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
} 
footer a:hover {
    color: rgb(228, 170, 170);
    transition: all 0.3s ease-in-out;
}
@media (max-width: 960px) {
    header {
        padding: 60px 0;
    }
    header h1 {
        font-size: 48px;
    }
    header h2 {
        font-size: 20px;
    }
    header h3 {
        font-size: 12px;
    }
    header a {
        padding: 12px 24px;
        font-size: 12px;
    }
    .grid {
        grid-template-columns: 1fr;
        grid-gap: 32px;
    }
    section {
        padding: 30px;
        margin:auto;
    }
    section h2, h3 {
       text-align: center;
        font-size: 14px;
    }
    section img {
        width: 40%;
        height: auto;
        margin: 20px auto;
    }
    footer ul {
        text-align: center;
    }
    .card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }
}

