body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}

.container {
    text-align: center;
    /*color: #333;*/
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(assets/first.jpg);
    background-size: cover;
    background-position: center;

    background-attachment: fixed;
}

h1 {
    font-weight: 700;
    font-size: 3rem;
}

p {
    max-width: 52ch;
    line-height: 1.5;
    padding: 1em;
}

.btn-main {
    display: inline-block;
    padding: 1em 3.5em;
    background-color: #002B4D;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0.3em;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: .875rem;
}

.btn-main:hover, 
.btn-main:focus {
    background-color: #fff;
    color: #333;
}

.blank {
    width: 100%;
    min-height: 20vh; /*60vh*/
    background-color: #002B4D;
}

.second {
    background-image: url(assets/second.jpg);
    background-attachment: fixed;
}

.third {
    background-image: url(assets/third.jpg);
    background-attachment: fixed;   
}

.fourth {
    background-image: url(assets/fourth.jpg);
    background-attachment: fixed;
}

h2 {
    font-weight: 700;
    font-size: 2rem;
    margin-top: 1em;
}

.other {
    width: 100%;
    min-height: 5vh;
    background-color: #002B4D;

    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;

}

.social-links {
    color: #fff !important;
    text-decoration: none;

}

.social-links i {
    font-size: 20px;
    color: inherit;
}

.info {
    background-color: #002B4D;
    color: #fff;
    padding: 1rem;
    margin-bottom: 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 8px;
    border-left: 8px solid #F95B2A;
}

@media (max-width: 500px) {

    .container {
        text-align: left;
    }

    .info {
        margin: .5rem 1rem;
        justify-content: flex-start;
        align-items: flex-start;
        
    }

    .other {
        justify-content: center;
        gap: 0;
    }

    a {
        margin: .5rem 1rem;
    }
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    p {
        max-width: 40ch;
        
        padding: 0;
    }

    .btn-main {
        font-size: 0.65rem;
    }
}
