* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bat-bg: #293361;
    --header-spacing: 40px;
    --container-size: 390px;
}

@font-face {
    font-display: swap;
    font-family: "Velo WWangle";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/velo-wwangle-latin-ext-400-normal.woff2) format("woff2");
}
@font-face {
    font-display: swap;
    font-family: "Velo WWangle";
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/velo-wwangle-latin-ext-700-normal.woff2) format("woff2");
}

/* Utilities */
.field-gap {
    margin-bottom: 20px;
}

/* Utilities End */

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Velo WWangle", sans-serif;
    scroll-behavior: smooth;
    background-attachment: fixed;
    background-color:var(--bat-bg);
}

section {
    min-height: 75vh;
    min-height: 75lvh;
}

header {
    margin-top: var(--header-spacing);
}

main {
    margin-top: 84px;
}

.wrapper {
    max-inline-size: var(--container-size);
    margin-inline: auto;
    padding-inline: 20px;
}

.left-color-bar {
    width: 4px;
    height: calc(100% - 53px);
    position: absolute;
    background: red;
    top: 0;
    right: 0;
}

:where(.age-section, .rozcestnik) .title {
    font-size: 2.125rem;
    line-height: 37px;
    color: #fff;
    font-weight: 700;
}
:where(.age-section, .rozcestnik) .description {
    font-size: 1rem;
    line-height: 22px;
    color: #fff;
    font-weight: 400;
    margin-block: 16px 22.5px;
    display: block;
    width: 230px;
}

.age-section .invite_id_description {
    margin-block: 16px 8px;
}

.age-section .age-confirm-form :where(input, input:focus-visible) {
    width: 100%;
    font-size: 1rem;
    padding: 20px 25px;
    border-radius: 0.75rem;
    border: 2px solid #fff;
    outline: none;
    font-family: "Velo WWangle", sans-serif;
    color: #fff;
    background: #7d839f;
}

.age-section .age-confirm-form input::placeholder {
    color: #fff;
}

.age-section .age-confirm-form button {
    width: 100%;
    font-size: 1rem;
    margin-block: 27px 24px;
    padding: 20px 25px;
    border-radius: 0.75rem;
    border: none;
    background-color: #7EADE5;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 22px;
    cursor: pointer;
    text-transform: uppercase;
}

:where(.age-section, .rozcestnik) .note-text {
    font-size: 9px;
    line-height: 14px;
    text-align: left;
    color: #ffffff;
}

.age-section .note-text {
    width: 90%;
}

/** rozcestnik **/
.rozcestnik .title { 
    width: 60%;
}
.rozcestnik .description {
    margin-block: 16px 42px;
}
.rozcestnik .button-group {
    display: flex;
    flex-direction: column;
    row-gap: 37px;
}
.rozcestnik .select-btn {
    display: block;
    width: 100%;
    background-color: #7EADE5;
    font-size: 1rem;
    font-weight: 500;
    line-height: 22px;
    color: #fff;
    padding-block: 22px;
    position: relative;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: 100ms ease;
    border-radius: 0.75rem;
    text-transform: uppercase;
}
.rozcestnik .select-btn:hover {
   scale: 1.03;
}

.rozcestnik  .select-btn p{
    --btn-text-color: #fff;
    display: block;
    width: fit-content;
    margin-inline: auto 10px;
    color: var(--btn-text-color);
}

.rozcestnik .select-btn img {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(0, -50%) scale(1.4);
}


footer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #f8f8f8;
    padding: 20px;
  }
  
  footer .bottom-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  footer .bottom-bar p {
    margin: 0;
    color: #000;
    font-size: 14px;
    text-align: center;
  }
  
  footer .floating-warning {
    position: absolute;
    left: 20px;
    top: -55px;
    display: flex;
    align-items: center;
    max-width: 200px;
  }
  
  footer .floating-warning img {
    max-width: 40px;
    max-height: 40px;
  }
  
  footer .floating-warning p {
    font-size: 12px;
    color: #EFEFEF;
    margin-left: 10px;
    width: 119px;
  }
  
 

/**
 * Responsiveness for Desktop View
 */
@media only screen and (min-width: 768px) {
    :root {
        --container-size: 768px;
    }

    footer {
        padding-block: 20px;  
    }

    footer .bottom-bar p {
        font-size: 14px;
    }

    footer .floating-warning p {
        font-size: 12px;
    }
}

@media only screen and (max-width: 500px) {
    footer {
        position: absolute;
       bottom: 0; 
    }
    
    footer .bottom-bar p {
  
        font-size: 10px;
        line-height: 13px;
        
      }
      footer .floating-warning img {
        max-width: 29px;
        max-height: 29px;
    }
    footer .floating-warning p{
        width: 50px;
        font-size: 7px;
        margin-left: 4px;
    }

    footer .floating-warning{

        left: 5px;
        top: -35px;
      
      }
}