/* roboto-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-v50-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v50-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/roboto-v50-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html {
    box-sizing: border-box;
    font-size: 19px;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    background-color: #0b0b0b;
    color: #fefefe;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 2rem 0;
}

main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 90%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo {
    width: 45%;
    height: auto;
    margin-bottom: 0;
}

.logo_sub {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.content {
    width: 75%;
}

.legal-page .content {
    text-align: left;
}

h1, h2, h3 {
    font-weight: 600;
}
a {
     color: #e30613;
}
.back-link {
    margin-top: 4rem;
    color: #e30613;
    text-decoration: none;
    font-weight: 400;
}

.footer-links {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    color: #e30613;
    text-decoration: none;
    font-weight: 400;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .logo {
        width: 75%;
    }
    .content {
        width: 90%;
    }
}