
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wdth,wght@62.5..100,100..900&display=swap');
:root {
    --content-size: 1100px;
    --max-content-size: calc(100vw - 100px);
}
* {
    font-family: 'Noto Sans', 'sans-serif';
    font-style: normal;
    font-optical-sizing: auto;
    font-variation-settings:
      "wdth" 75;
  
}
body {
    margin: 0;
    left: 0;
    top: 0;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: #03263a;

}
.background-image {
    position: absolute;
    width: 100vw;
    height: calc(50vh + 100px);
    background-image: url(../assets/bg.webp);
    background-position-x: center;
    background-position-y: top;
    background-repeat: no-repeat;
    background-size: cover;
}
.background-image-proxy {
    position: fixed;
    bottom: calc(50vh - 110px);
    width: 100%;
    height: 100px;
    background-image: url(../assets/bg-footer-proxy.png);
    background-position: center center;
    background-repeat: repeat-x;
    background-size: auto 100px;
}

.content {
    z-index: 10;
    position: absolute;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
}
.content > div {
    width: var(--content-size);
    max-width: var(--max-content-size);
}

.inner-content {
    flex: 1;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scrollable {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    position: relative;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ffcc30 transparent;
}

.inner-content-wrapper {
    font-size: 16px;
    
    background: white;
    width: 100%;
}

.inner-content-wrapper .text {
    width: 625px;
    padding-left: 50px;
    padding-right: 50px;
    margin: 50px auto;
    font-weight: 600;
}
.inner-content-wrapper .text h2 {
    margin-bottom: 0;
}

.inner-content-wrapper .text p {
    margin-top: 0.5em;
    
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
}
b {
    font-weight: 900;
}
.b-6 {
    font-weight: 600;
}
.subtitle {
    margin-top: 0.5rem;
    font-weight: 600;
}
.mb-0 {
    margin-bottom: 0;
}
.footer {
    color: white;
    display: flex;
    margin-top: auto;
    justify-content: center;
    text-underline-position: under;
    font-weight: 600;
}

.privacy {
    background: black;
    color: white;
    display: flex;
}
.privacy p {
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
}
.privacy a {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 1100px) {
    .inner-content-wrapper .text {
        width: unset;
    }
}

@media (max-width: 600px) {
    :root {
        --max-content-size: 100vw;
    }
    .inner-content-wrapper .text { 
        padding-left: 30px;
        padding-right: 30px;
    }

    .footer {
        font-size: 0.8em;
    }
}

@media (max-height: 600px) {
    .footer {
        font-size: 0.8em;
    }
}