body {
 font-family: 'Poppins', sans-serif;
 background-color: #142d4c;
 background-repeat: no-repeat;
 background-size: cover;
 padding: 20px 0;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.image-responsive {
    max-width: 100%;
   
}

.grid {
    display: grid;
    grid-gap: 20px;
}

.grid-gap {
    grid-gap: 0;
}

.grid-2-columns {
    grid-template-columns: 1fr 1fr;
}

.grid-3-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.grid-3-columns-with-first-narrow {
  grid-template-columns: 1fr 2fr 2fr;
}

.embed {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 0;
}

.google-embeds {
    margin: 30px 0;
}

.card {
    background: white;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 10px;

}

.card-header.grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    grid-gap: 10px;

}

.card-body {
    padding: 30px;
}

.card-footer {
    padding: 0 30px 30px;
}

.btn {
    display: block;
    color: white;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px;
    background-color: #044a42;
    text-decoration: none;
}

section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
}

section.secondary {
    background: #f8f8f8;
}

header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/dictionaryheader.jpg');
    background-repeat: none;
    background-size: cover;
    text-align: center;
    color: black;
    padding: 250px 0;
}

header h1 {
    font-weight: 700;
    font-size: 96px;
    line-height: 1;
    letter-spacing: 10px;
    margin-bottom: 30px 0;
}

header h2 {
    font-weight: 400;
    font-size: 40px;
    line-height: 1.5;
}

header a {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    background-color: white;
    text-decoration: none;
    color: #272044;
    padding: 16px 23px;
    margin-top: 32px;
    display: inline-block; 
}

main {
    background-color: white;
}

main h2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  letter-spacing: 5px;
  color: #272044;
  opacity: 0.3;
  text-transform: uppercase;
}

main h3 {
font-weight: 700;
font-size: 40px;
line-height: 1.5;
color: #272044;
margin: 0;

}

main p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #272044;
    opacity: 0.7;

}

footer {
    color: white;
    background-image: url('../images/responsivefooter.jpg');
    background-repeat: none;
    background-size: cover;
}

footer h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
}

footer p {
    font-weight: 400;
    font-size: 16px;
    opacity: 0.7;
    margin-right: 20px;
    line-height: 24px;
}

footer ul {
    padding: 0;
}

footer li {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer a {
    color: white;
    opacity: 0.7;
    text-decoration: none;
}

@media (max-width: 960px) {
    header {
        padding: 60px 0;
    }

    header h1 {
        font-size: 48px;
    }

    header h2 {
        font-size: 20px
    }

    header h3 {
        font-size: 12px;
    }

    .grid {
        grid-template-columns: 1fr;
        grid-gap: 32px;
    }

    section {
        padding: 30px;
    }

    .card-header img {
        display: none;
    }

    .embed {
        aspect-ratio: 16 / 9;
    }
}