
body {
    background-color: #77add9;
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    font-family: 'Raleway';
    font-size: 28px;
    line-height: 1.25;
}

.email-link {
    text-decoration: none;
    color: #db473d;
    transition: color 0.3s ease;
}

.email-link:focus,
.email-link:hover {
    color: #053c5b;
}

.content-area {
    background-color: #fff;
    width: 100%;
    max-width: 1100px;
    padding-left: 6vw;
    padding-right: 6vw;
    margin: auto;
    white-space: wrap;
    word-break: break-word;
}

.button {
    display: inline-block;
    background-color: #6b6e41;
    color: white;
    padding: 10px 115px;
    text-transform: uppercase;
    font-size: 36px;
    font-family : 'Hammersmith One', sans-serif;
    transition : background-color 0.25s ease, color 0.25s ease;
    text-decoration: none;
}

.button:focus,
.button:hover {
    background-color: black;
}

@media only screen and (max-width: 750px) {
    .button {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 24px;
    }
    p {
        font-size: 18px;
    }
}