@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/inter-v20-latin-regular.woff2")format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/inter-v20-latin-600.woff2")format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    background: #0e212a;
    color: #ffffff;
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    font-size: min(5vw, 22px);
    line-height: 1.4;
    overflow-y: auto;
}

a {
    color: #ffffff;
    transition: color 0.5s;
}

a:hover {
    color: #dddf4b;
}

main {
    width: 100%;
    min-height: 100%;
    padding: min(15vw, 100px) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon {
    width: min(30vw, 200px);
    aspect-ratio: 1;
    margin-bottom: 50px;
}

.coming-soon {
    text-transform: uppercase;
    font-weight: bold;
    font-size: min(12vw, 120px);
    line-height: 1.2;
    margin-bottom: 60px;
}

.logo {
    aspect-ratio: 500/55;
    height: auto;
    width: min(80vw, 500px);
}

h1 {
    font-size: min(6.25vw, 30px);
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: min(1vw, 5px);
    margin: 5px 0 30px 0;
}

.address {
    margin-bottom: 60px;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact .label {
    font-weight: bold;
    color: #dddf4b;
}

.contact .button {
    background: #dddf4b;
    color: #0e212a;
    height: min(10vw, 60px);
    line-height: min(5vw, 30px);
    padding: min(2.5vw, 15px) min(5vw, 30px);
    border-radius: min(5vw, 30px);
    transition: box-shadow 0.5s;
    text-decoration: none;
    font-weight: bold;
}

.contact .button:hover {
    box-shadow: 0 0 15px 0 #dddf4b;
}

.footer-menu {
    font-size: min(3.5vw, 16px);
    line-height: 1.2;
    display: flex;
    gap: min(5vw, 30px);
    margin-top: 60px;
}

body.page main {
    padding: min(15vw, 100px) min(7vw, 50px);
    max-width: 1200px;
    margin: 0 auto;
    font-size: min(3.5vw, 16px);
    line-height: 1.4;
    align-items: start;
}

body.page .logo {
    margin-bottom: 60px;
}

body.page .text h2 {
    font-size: min(5vw, 26px);
    line-height: 1.2;
    font-weight: 600;
}

@media (orientation: portrait) {}

@media screen and (max-height: 700px) {}