/* #region PAGE */

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    min-height: 100vh;

    background: black;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 25px;

    box-sizing: border-box;
}

/* #endregion */


/* #region ABOUT BOX */

.about-box {
    width: min(1200px, 95vw);
    min-height: 650px;

    background: black;
    color: white;

    display: grid;
    grid-template-columns: 40% 60%;

    box-sizing: border-box;

    padding: 70px;
}

/* #endregion */


/* #region LEFT SIDE */

.about-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-left h1 {
    margin: 0 0 60px 0;

    font-family: "Courier New", Courier, monospace;
    font-size: 55px;
    line-height: 1;

    color: white;

    text-align: center;
}

.about-image {
    width: 330px;
    max-width: 100%;
    height: auto;

    display: block;
}

/* #endregion */


/* #region RIGHT SIDE */

.about-right {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-left: 60px;

    font-family: "Courier New", Courier, monospace;
    font-size: 18px;
    line-height: 1.5;
}

.about-right p {
    margin: 0 0 25px 0;
}

/* #endregion */


/* #region MOBILE */

@media (max-width: 750px) {

    body {
        padding: 15px;
        align-items: flex-start;
    }

    .about-box {
        grid-template-columns: 1fr;

        padding: 35px 25px;

        min-height: auto;
    }

    .about-left h1 {
        font-size: 42px;
        margin-bottom: 35px;
    }

    .about-image {
        width: 250px;
        margin-bottom: 45px;
    }

    .about-right {
        padding-left: 0;

        font-size: 16px;
    }

}

/* #endregion */