body {
    font-family: 'Montserrat', sans-serif;
    color: #231f20;
    background-color: rgb(255,255,255);
    font-weight: 400;
    line-height: 1.25rem;
    font-size: 0.875rem;
    font-style: normal;
    margin: 0 auto;
}

nav {
    padding: 0.5rem;
    text-align: center;
}

header {
    background-image: url("assets/banner.jpg");
    background-size: cover;
    background-position: left;
    box-sizing: border-box;
    border-radius: 15px;
    margin: 0 auto;
    min-height: 300px;
    padding: 2rem 0 4.5rem;
    justify-content: space-between; 
    display: flex;
    flex-direction: column;
}

footer {
    background-color: #000032;
    color: #4d4d6f;
    padding-top: 2rem;
}

footer .content {
    padding-left: 2rem;
}

a {
    color: inherit;
    text-decoration: none;
}

.content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.25rem 2rem;
}

.container {
    display: flex;
    align-self: flex-start;
    justify-content: space-between; 
    flex-direction: row;
    margin-top: -70px;
}

.section {
    background-color: #eee;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    margin: 0.5rem 1.5rem;
}

.button {
    background-color: #24d6c1;
    border-radius: 5px;
    color: #000;
    padding: 1rem;
    border: 2px solid #24d6c1;  
    cursor: pointer;
    display: inline-block;
    font-size: .9rem;
    font-weight: 800;
    height: auto;
    line-height: 1.1;
    margin: 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: all .15s linear;
    white-space: normal;
    word-break: keep-all;
    width: 8rem;
    flex-shrink: 0;
}

.button_alt {
    display: none;
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #8d8d8d;
}

.action_image {
    width: 100px;
    height: 100px;
}

.action_text {
    flex-grow: 1;
    padding: 0 2rem;
}

.row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: #aaa solid 1px;
}
.row:last-child {
    border-bottom: none;
}

.chat {
    width: 100%;
    min-width: 24rem;
    height: 500px;
    border: none;
    border-radius: 15px;
}

@media screen and (max-width: 1200px) {
    .container {
        flex-direction: column;
    }
    .section {
        margin: 10px;
    }
    .action_image {
        width: 50px;
        height: 50px;
    }
    .action_text {
        padding: 0 1rem;
    }
}

@media screen and (max-width: 600px) {
    .content {
        padding: 0 0.5rem 1rem;
    }
    .action_image {
        width: 50px;
        height: 50px;
    }
    .button {
        display: none;
    }
    .button_alt {
        display: inline-block;
    }
    .chat {
        min-width: unset;
    }
    .section {
        padding: 1rem;
    }
}

@media screen and (max-width: 500px) {
    header {
        background-position: -45px;
    }
    .content {
        padding: 0 0.5rem 2rem;
    }
}
