body {
    background-size: cover;
    background-repeat: no-repeat;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1920px;
    max-height:fit-content;
}

/* =========================================
   TIME-BASED BACKGROUND CROSSFADE
   ========================================= */

#timeBackgroundA,
#timeBackgroundB {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    pointer-events: none;

    transition: opacity 4s ease-in-out;

    z-index: -10;
}

#timeBackgroundA {
    opacity: 1;
}

#timeBackgroundB {
    opacity: 0;
}

.Top {
    background-image: url("Images/Header/Top Layer.png");
    height:180px;
    background-size: cover;
    font-size: larger;
    offset: 30px;
    display:flex;
}

.Container {
    display:flex;
    gap: 30px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* From https://css.glass */
    background: linear-gradient(to top, rgb(110, 144, 198), transparent), url("Images/AeroPeek.png");
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.8px);
    -webkit-backdrop-filter: blur(6.8px);
    border: 1px solid rgba(157, 216, 251, 0.47);
    height: 400px;
    background-repeat: no-repeat;
    background-size:cover;

}

.Footer {
    min-height: 100px;
      background: linear-gradient(to bottom,
    rgba(224, 206, 252, 0.65) 0%,
    rgba(204, 181, 214, 0.5) 55%,
    rgba(185, 169, 197, 0.5) 55%,
    rgba(190, 174, 193, 0.65) 100%),
      url("Images/AeroPeek.png");
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.8px);
    -webkit-backdrop-filter: blur(6.8px);
    border: 1px solid rgba(157, 216, 251, 0.47);
    position:sticky;
    bottom:0;
    background-blend-mode: overlay;
    background-size: cover;
    z-index: 2;
}

.Navgation{
     z-index: 3;
     top:100px;
     background: rgba(76, 33, 219, 0.473);
     box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
     backdrop-filter: blur(5px);
     -webkit-backdrop-filter: blur(5px);
     border: 1px solid rgba(80, 47, 184, 0.3);
     background-size: auto;
     align-items: stretch;
     position:sticky;
     top:0;
     background-image: url("Images/AeroPeek.png");
     background-size: cover;
}

.Navgation ul{
    list-style-type: none;
    margin: 0 auto;
    position: relative;
    padding: 0;
    overflow: hidden;
    width:auto;
    height: 100%;
}

.Navgation ul li{
    float: left;
    height:100%;
}

.Navgation ul li a{
    position:relative;
    display: block;
    color: black;
    text-align: center;
    width:auto;
    padding: 20px 24px;
    text-decoration: none;
    overflow: hidden;
    transition: color .2s ease;
}

.Navgation ul li a:hover {
    color: transparent;
}
/* Navigation icons */
.Navgation ul li a img {
    position: absolute;

    width: 50px;
    height: 50px;

    left: 50%;
    top: 6px;

    transform: translateX(-50%) scale(.7);

    opacity: 0;

    transition:
        opacity .2s ease,
        transform .2s ease;

    pointer-events: none;
    z-index: -1;
}

/* Show icon when hovering */
.Navgation ul li a:hover img {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.Navgation ul li a::before{
    content:"";
    position:absolute;
    inset: 0;
    background-image: url("Images/Taskbar/Hover\ Aero\ for\ taskbar.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    opacity: 0;
    transition: opacity .25s ease;
    z-index: -1;
}

.Navgation ul li a::after{
    content:"";
    position:absolute;
    inset: 0;
    background: linear-gradient(-45deg, transparent 40%,rgba(255, 253, 255, 0.4)50%, transparent 60%);
    background-size: 300%;
    background-position-x: 100%;
    opacity: 0;
    z-index:-1;
    border-radius: 30px;
}

.Navgation ul li a:hover::before {
    opacity: 1;
    animation: pulse 2.5s ease-in-out infinite;
}

.Navgation ul li a:hover::after {
    opacity: 1;
    animation: shimmer 2.5s infinite linear;
}

.Navgation ul li a:active{
    background-image: url("Images/Taskbar/Press\ Aero\ for\ taskbar.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    opacity: 1;
}

@keyframes pulse {
    0% {
        opacity: 0;
        filter:brightness(100%)
    }

    50% {
        opacity: 1;
        filter:brightness(150%)
    }

    100% {
        opacity: .1;
        filter:brightness(100%)
    }
}

@keyframes shimmer {
   to {
      background-position-x: 0%
   }

    0% {
        opacity: 0.35;
        filter:brightness(100%)
    }

    50% {
        opacity: 1;
        filter:brightness(200%)
    }

    100% {
        opacity: 0.36;
        filter:brightness(100%)
    }
}

.Footer ul{
    list-style-type: none;
    margin: 0 auto;
    position: relative;
    padding: 0;
    overflow: hidden;
    width:auto;
    height: 100%;
}

.Footer ul li{
    float: left;
    height:100%;
}

.Footer-Brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.Footer-Brand img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.Footer-Brand h3 {
    margin: 0;
}

.Footer-Brand p {
    margin: 4px 0 0;
}


.Footer-Sections {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 60%;
}


.Footer-Section {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 150px;
}

.Footer-Section img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.Footer-Section h4 {
    margin: 0 0 7px;
}

.Footer-Section a {
    display: block;
    color: #075fa8;
    text-decoration: none;
    margin: 3px 0;
}

.Footer-Section a:hover {
    text-decoration: underline;
}


.Footer-Bottom {
    display: flex;
    justify-content: space-between;

    margin-top: 20px;
    padding-top: 10px;

    border-top: 1px solid rgba(255,255,255,.35);

    font-size: 12px;
    opacity: .8;
}