* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    text-decoration: none;
    font-family: 'Merriweather', serif;
}

.container {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/saltbanner.jpg);
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

header .container {
    padding-bottom: 30px;
    max-width: 970px;
}

header h1 {
    padding-top: 5%;
    color: #FFFFFF;
    font-size: 42px;
    text-align: left;
    margin-bottom: 33px;
}

header p {
    color: #d6d6d6;
    font-size: 19px;
}

main p {
    font-size: 17px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.75;
}

main .container {
    padding-top: 30px;
}

main .container p span {
    font-weight: bold;
}

#mbThirty {
    margin-bottom: 30px;
}

main .container .quote {
    max-width: 865px;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    color: #333;
}

main .container .quote span {
    text-align: center;
    font-size: 14px;
    color: gray;
    font-weight: 500;
}

main .container .image-wrp {
    max-width: 300px;
    margin: 0 auto 20px;
}

.image-wrp img {
    width: 100%;
}

main .container .thumb-wrp {
    max-width: 623px;
    margin: 0 auto;
}

.thumb-wrp img {
    width: 100%;
}

main .container .link {
    font-size: 20px;
    font-weight: bold;
    color: blue;
    text-decoration: underline;
    line-height: 1.75;
    margin: 0 auto 15px;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.button {
    background: radial-gradient(at center center, #0069ff 28%, #00f 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    display: block;
    max-width: 623px;
    width: 100%;
    margin: 0 auto 20px;
    text-align: center;
}

.button:hover {
    animation: pulse 1s infinite linear;
}

.final {
    margin-top: 50px;
    width: 100%;
    height: 1px;
    background-color: black;
}

footer {
    padding: 15px 0;
}

footer .container p {
    color: #999;
    font-size: 10px;
    text-align: center;
    font-weight: 400;
    font-family: Arial, Helvetica, sans-serif;
}

footer .container .links {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: 10px;
}

footer .container a {
    color: #000;
    font-family: 'Merriweather', serif;
    font-size: 0.85rem;
    text-decoration: none;
}

footer .container a:hover {
    color: #cc0000;
    text-decoration: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }

}

@media (max-width:768px) {
    header h1 {
        font-size: 32px;
    }

    header p {
        color: #d6d6d6;
        font-size: 16px;
    }

    main p {
        font-size: 16px;
    }

    main .container .quote { 
        font-size: 20px; 
    }

    main .container .link {
        font-size: 18px; 
    }
}