/* Reset and base styles  */
* {
    padding: 0px;
    margin: 0px;
    border: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:focus,
:active {
    /*outline: none;*/
}

a:focus,
a:active {
    /* outline: none;*/
}

/* Links */

a,
a:link,
a:visited {
    /* color: inherit; */
    text-decoration: none;
    /* display: inline-block; */
}

a:hover {
    /* color: inherit; */
    text-decoration: none;
}

/* Common */

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-size: inherit;
    font-weight: inherit;
}

body {
    font-family: 'KoHo', sans-serif;
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #282828;
    color: #fff;
    padding: 50px;
}
.container {
    display: flex;
    gap: 10px;
    height: 100dvh;
    align-items: center;
    font-size: 1.125rem;
}
.container__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 500px;
    max-width: 500px;
    height: 100%;
    gap: 15px;
}
h1 {
    font-size: 2rem;
}

a {
    color: #3877ff;
}

/*---------------------------------max-width:1024---------------------------------*/
@media (max-width: 1025px) {
    .container {
        font-size: 0.875rem;
    }
}

/*---------------------------------max-width:800---------------------------------*/
@media (max-width: 801px) {
    body {
        padding: 0 25px 15px 25px;
    }
    .container {
        flex-direction: column;
        justify-content: center;
    }
    .container__info {
        max-width: 700px;
    }
}

/* ---------------------------------max-width:500--------------------------------- */
@media (max-width: 500px) {
    .container {
        font-size: 0.775rem;
    }
    .container__info {
        gap: 10px;
    }
}
