/**
 * Copyright © 2023 DAS Mecanique Inc. All Rights Reserved.
 */

*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
}
html, body {
    width: 100%;
    height: 100%;
    font-family: 'Barlow', sans-serif;
    font-family: 'Montserrat', sans-serif;
}
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}
a,
a:hover,
a:focus,
a:active {
    color: inherit;
    text-decoration: none;
}
input, button, textarea, select {
    font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}
#root, #__next {
    isolation: isolate;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #ffffff;
}

::-moz-selection {
    color: #000000;
    background: #ffffff;
    text-shadow: 0 0 2px #000000;
}

::selection {
    color: #000000;
    background: #ffffff;
    text-shadow: 0 0 2px #000000;
}

html, body {
    color: #ffffff;
    font-size: 10px;
    font-weight: 400;
    font-family: 'Barlow', sans-serif;
    background-color: #000000;
}

.flex-container {
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    z-index: 1;
    position: relative;
    overflow: scroll;
    overflow-x: hidden;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flex-box {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.background {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
    display: block;
    position: fixed;
    filter: blur(2px);
    background-color: #000000;
    background-size: cover;
    background-position: center;
    background-image: url('../images/background.jpg');
    transition: opacity 1s ease-in, transform 5s ease-in-out;
}

.background.ready {
    opacity: 1;
    transform: scale(1.1);
}

.logo {
    width: 100%;
    height: auto;
    max-width: 300px;
    display: block;
    user-select: none;
    pointer-events: none;
}

.heading {
    max-width: 600px;
    font-size: 2em;
    font-weight: 100;
    text-shadow: 0 0 2px #ffffff;
}

.phone-heading {
    font-size: 5em;
    font-weight: 900;
    text-shadow: 0 0 2px #ffffff;
    white-space: nowrap;

}

.langs {
    top: 20px;
    right: 40px;
    color: #fff;
    z-index: 100;
    position: fixed;
    font-size: 1.5em;
}

@media screen and (max-width: 768px) {
    html, body {
        font-size: 7px;
    }
}
