body {
    font-family: Poppins, sans-serif;
background-color: black;}

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

.img-responsive {
    width: 100%;
}

.embed {
    width: 100%;
    display: block;
    height: auto;
    margin: 0 auto;
}

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

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

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

.grid-2-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1400px;
}

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

.instagram {
    display: grid;
    max-width: 1400px;
}

.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card {
    background-color: white;
    margin: 30px 0;
}

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

.card-body {
    padding: 30px;
    text-align: center;
}

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

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

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

section.secondary {
    background: #f8f8f8;
    max-width: 1400px;
}

header {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('../images/brindisiport.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;
    letter-spacing: 5px;
    margin: 0;
}

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

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;
    text-align: center;
    padding: 30px;
}

main h3 {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.5;
    color: #272044;
    margin: 0;
    text-align: center;
    padding: 30px;
}

main p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #272044;
    opacity: 0.7;
    text-align: center;
    padding: 30px;
}

footer {
    background-image: linear-gradient(rgba(28, 25, 42, 0.9), rgba(39,
        32,
        68,
        0.9)), url('../images/spiaggia.jpg');
    color: white;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    background-position: center;
}

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;
}

@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
    }
    
}