/* Mobile styling */

@media only screen and (max-width: 600px) {
    .content {
        display: grid;
        grid-template-rows: repeat(2, 1fr);
        grid-template-columns: none;
    }

    .content .image {
        grid-row: 2 / span 1;
        display: flex;
        justify-content: center;
    }

    .content .image img {
        width: 90%;
    }

    .btn {
    font-family: "Noto sans", sans-serif;
    color: #ffffff;
    font-size: 20px;
    background: #851711;
    padding: 10px 20px 10px 20px;
    border: solid #c48177 3px;
    border-radius: 10%;
    text-decoration: none;
}


}
