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

/* Base Styles */
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fbfbfd;
    font-family: "Poppins", sans-serif;
}

footer {
    background: #dde;
    bottom: 0;
    color: #1e4c86;
    padding: 0 .4rem;
    position: fixed;
    text-align: right;
    width: 100vw;
}

header {
    background: #1e4c86;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    padding: .2rem 1.2rem .4rem 1.2rem;
    position: fixed;
    top: 0;
    width: 100vw;
}


/* Container Styles */
.image-container {
    background: #f5f5f5;
    text-align: center;
}

.centered-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Brand Styles */
.brand-app {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    font-weight: 600;
}
.course-version {
    background: #fff;
    border-radius: 3rem;
    color: #f00;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    padding: .2rem 1rem;
    width: fit-content;
}

.github-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.github-link:hover {
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
    transform: scale(1.5) translate(-.9rem, -.14rem);
    transition: all 0.3s ease-in-out;
}
.brand-mj {
    font-family: "Permanent Marker", cursive;
    font-size: 1.2rem;
    font-weight: 400;
}
.brand-mj.mr {
    color:rgb(229, 155, 155);
}
.brand-mj.jason {
    color:#025ac5
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .centered-image {
        max-width: 90%;
        max-height: 70vh;
    }
    header {
        display: flex;
        justify-content: space-between;
        padding: .2rem .3rem .4rem .3rem;
    }
    header h1 {
        font-size: 1.5rem;
        line-height: 1.5rem;
        width: 50%;
    }
    header h2{
        font-weight: 400;
        font-size: .8rem;
        height: fit-content;
        margin-top: .2rem;
        padding: .1rem .5rem;
    }

    footer {
        font-size: .8rem;
    }
}
