/*--------------------Reset--------------------*/
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
* { padding: 0px; margin: 0px; border: none; outline: none; max-height: 100000px}
h1,h2,h3,h4,h5,h6,p{font-size:inherit;font-weight:inherit;}
input{-webkit-appearance: none; -moz-appearance: none; appearance: none; font: inherit;}
img, svg {vertical-align: top; max-width: 100%; height: auto; display: block;}
a,button {display:inline-block; text-decoration:none; color:inherit; box-shadow: none; font: inherit; cursor: pointer;}
.footer a[href^=tel] { color: inherit; text-decoration:inherit; pointer-events: none; display: inline; } 

/*--------------------Fonts--------------------*/
@font-face {
    font-family: 'Poppins';
    src: url("./fonts/Poppins-Regular.woff2") format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url("./fonts/Poppins-Bold.woff2") format('woff2');
    font-weight: 600;
    font-display: swap;
}


/*--------------------General--------------------*/
body {
    min-width: 280px;

    font-family: "Poppins", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    
    color: #ffffff;
    background: #191a19;
    overflow-x: hidden;

    text-align: center;
    text-size-adjust: none;
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: transparent;
}

.main {    
    min-height: calc(100vh - 80px);
    min-height: calc(var(--vh,100vh) - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    min-height: calc(100vh / 2);
    min-height: calc(var(--vh,100vh) / 2);
    width: 100%;
    max-width: 275px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title {
    font-size: 25px;
    font-weight: 600;
    line-height: 32px;
    color: #6ae8e8;
}

.subtitle {
    font-weight: 600;
    margin-top: 20px;
}

.footer__text {
    font-size: 12px;
}

@media screen and (min-width: 768px) {
    body {
        font-size: 20px;
    }

    .container {
        max-width: 672px;
    }

    .title {
        font-size: 38px;
        line-height: normal;
    }

    .subtitle {
        margin-top: 30px;
    }
}

@media screen and (min-width: 1800px) {
    body {
        font-size: 25px;
    }

    .container {
        max-width: 884px;
    }

    .title {
        font-size: 50px;
    }

    .subtitle {
        margin-top: 40px;
    }
}
