/* #region BUILT-IN */
body
{
    background-image: url(/resources/images/background.webp);
    background-size: cover;
    font-family: Roboto, sans-serif; /* Use roboto, but fall back to the system's default Sans Serif font if it's not available. */
    margin: 0;
    user-select: none;
}

h1
{
    font-weight: 400;
    margin-left: 13px;
}

h2
{
    font-weight: 350;
    margin-left: 13px;
}

p
{
    font-weight: 200;
    margin-left: 13px;
    margin-right: 35px;
}

iframe
{
    margin-left: 13px;
}
/* #endregion */

/* #region FONTS */

/* Roboto Variable */
@font-face
{
    font-family: 'Roboto';
    src: url(/resources/fonts/roboto/roboto.ttf);
}

/* Roboto Italic Variable */
@font-face
{
    font-family: 'Roboto-Italic';
    src: url(/resources/fonts/roboto/roboto-italic.ttf);
}

/* #endregion */

/* #region ANIMATIONS */
@keyframes navbar-button-hover
{
    0% {box-shadow: inset 0 0 0 2px rgba(91, 29, 0, 1);}
    25% {box-shadow: inset 0 0 0 2.5px rgba(91, 29, 0, 1);}
    50% {box-shadow: inset 0 0 0 3px rgba(91, 29, 0, 1);}
    75% {box-shadow: inset 0 0 0 3.5px rgba(91, 29, 0, 1);}
    100% {box-shadow: inset 0 0 0 4px rgba(91, 29, 0, 1);}
}

@keyframes link-button-hover
{
    0% {box-shadow: inset 0 0 0 2px rgba(91, 29, 0, 1);}
    25% {box-shadow: inset 0 0 0 2.3px rgba(91, 29, 0, 1);}
    50% {box-shadow: inset 0 0 0 2.5px rgba(91, 29, 0, 1);}
    75% {box-shadow: inset 0 0 0 2.7px rgba(91, 29, 0, 1);}
    100% {box-shadow: inset 0 0 0 3px rgba(91, 29, 0, 1);}
}

@keyframes hamburger-click
{
    0% {box-shadow: inset 0 0 0 5px rgba(91, 29, 0, 1);}
    25% {box-shadow: inset 0 0 0 3.5px rgba(91, 29, 0, 1);}
    50% {box-shadow: inset 0 0 0 3px rgba(91, 29, 0, 1);}
    75% {box-shadow: inset 0 0 0 2.5px rgba(91, 29, 0, 1);}
    100% {box-shadow: inset 0 0 0 2px rgba(91, 29, 0, 1);}
}
/* #endregion */

/* #region CLASSES */
.container
{
    min-height: 100vh;
    height: auto;
    min-width: 70%;
    max-width: 900px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    margin-left: auto;
    margin-right: auto;
}

.navbar
{
    height: 128px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.content
{
    color: rgba(255, 255, 255, 1);
}

.navbar-button
{
    width: 128px;
    height: 64px;
    border-radius: 0;
    box-shadow: 0 0 0 2px inset rgba(91, 29, 0, 1);
    border: none;
    background-color: rgba(0, 0, 0, 0);
    color: rgba(255, 255, 255, 1);
    font-size: 16pt;
    margin-left: 13px;
    text-align: center;
    align-content: center;
    text-decoration: none;
    font-weight: 200;
}
.navbar-button:hover
{
    box-shadow: 0 0 0 4px inset rgba(91, 29, 0, 1);
    background-color: rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, 1);
    animation-name: navbar-button-hover;
    animation-duration: 0.5s;
    cursor: pointer;
}
.navbar-button:active
{
    background-color: rgba(200, 200, 200, 1);
}

.logo
{
    margin-right: 13px;
    margin-left: auto;
}

.links
{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.link-button
{
    width: 128px;
    height: 32px;
    background-color: rgba(0, 0, 0, 0);
    color: rgba(255, 255, 255, 1);
    border: none;
    border-radius: 0;
    box-shadow: 0 0 0 2px inset rgba(91, 29, 0, 1);
    margin-left: 13px;
    text-align: center;
    align-content: center;
    font-size: 11pt;
    text-decoration: none;
    font-weight: 200;
}
.link-button:hover
{
    box-shadow: 0 0 0 3px inset rgba(91, 29, 0, 1);
    background-color: rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, 1);
    animation-name: link-button-hover;
    animation-duration: 0.5s;
    cursor: pointer;
}
.link-button:active
{
    background-color: rgba(200, 200, 200, 1);
}

.hamburger-button
{
    display: none;
    width: 100%;
    height: 40px;
    background-color: rgba(0, 0, 0, 0);
    color: rgba(255, 255, 255, 1);
    border-radius: 0;
    border: none;
    box-shadow: 0 0 0 4px inset rgba(91, 29, 0, 1);
}
.hamburger-button:active
{
    animation-name: hamburger-click;
    animation-duration: 0.05s;
    box-shadow: 0 0 0 2px inset rgba(91, 29, 0, 1);
}

.hamburger-menu
{
    position: fixed;
    z-index: 1;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(50px);
}

.mobile-button
{
    display: block;
    width: 100%;
    height: 40px;
    background-color: rgba(0, 0, 0, 0);
    color: rgba(255, 255, 255, 1);
    border-radius: 0;
    border: none;
    box-shadow: 0 0 0 4px inset rgba(91, 29, 0, 1);
    font-weight: 200;
    text-align: center;
    align-content: center;
    text-decoration: none;
    margin-top: 8px;
}

.in-page-logo
{
    display: none;
}
/* #endregion */

/* #region IDs */
#ycpa-desktop
{
    display: block;
}
#ycpa-mobile
{
    display: none;
}

#links-desktop
{
    display: block;
}
#links-mobile
{
    display: none;
}
/* #endregion */

/* MOBILE SUPPORT ----------------------------------------------------------------------------------------- */

@media (max-width: 700px)
{

/* #region BUILT-IN */
    p
    {
        margin-right: 13px;
    }
/* #endregion */

/* #region CLASSES */
    .container
    {
        background-color: rgba(0, 0, 0, 1);
        width: 100%;
        height: 100vh;
    }
    
    .navbar
    {
        display: none;
    }

    .hamburger-button
    {
        display: block;
    }

    .in-page-logo
    {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 13px;
    }

    .links
    {
        display: block;
    }
/* #endregion */

/* #region IDs */
    #ycpa-desktop
    {
        display: none;
    }
    #ycpa-mobile
    {
        display: block;
    }

    #links-desktop
    {
        display: none;
    }
    #links-mobile
    {
        display: block;
    }
/* #endregion */
}