html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;

    color: #7A7A7A;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    background-color: transparent;

    background-image: radial-gradient(
        at center center,
        #FFFFFF 0%,
        #C0FFEE 100%
    );
}

.page {
    min-height: 95vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: flex-start;

    width: 100%;
}

.content {
    width: 1140px;
    max-width: 100%;

    margin-left: auto;
    margin-right: auto;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 15px;
}

.logo {
    display: inline-block;

    width: 130px;
    height: 88px;

    object-fit: contain;

    vertical-align: middle;

    margin: 0;
    padding: 0 0 20px 0;
}

h1 {
    padding: 0;
    margin: 20px 0 0 0;

    color: #000000;

    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 100;

    line-height: 1;

    text-align: left;
}

p {
    padding: 0;
    margin: 0;

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.5;

    color: #7A7A7A;
}

.divider {
    width: 150px;
    height: 1px;

    margin-top: 20px;
    padding-bottom: 20px;

    border-top: 1px solid rgba(84, 89, 95, 0.3);
}

.instagram {
    display: inline-flex;

    width: 35px;
    height: 35px;

    align-items: center;
    justify-content: center;

    color: #7A7A7A;

    text-decoration: none;
}

.instagram svg {
    width: 35px;
    height: 35px;

    display: block;

    fill: #7A7A7A;
}

.instagram:hover {
    color: #7A7A7A;
}

@media (max-width: 1140px) {
    .content {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 767px) {
    .content {
        width: 80vw;

        margin-left: auto;
        margin-right: auto;

        padding-left: 0;
        padding-right: 0;
    }
}
