* {
    color: #f5893e;
    background-color: whitesmoke;
    margin: 0;
    font-family: Poppins;
    max-width: 100%;
}

#comfy {
    margin: auto;
    margin-left: 2%;
    float: inline-start;
    background-color: transparent;
    font-size: 3cqmin;
}

#itch {
    width: 5cqmin;
    margin-right: 30cqmin;
    transition: 1s;
    background-color: transparent;
}

#itch:hover {
    transform: scale(1.2);
    background-color: transparent;
}

a {
    background-color: red;
    display: contents;
}

#head {
    display: inline-flex;
    position: fixed;
    width: 100%;
    height: 10%;
    background-color: black;
    text-align: center;
    z-index: 1;
}

#team {
    display: inline-block;
    width: 100%;
    margin-top: 7.5cqmax; 
}

#team a {
    transition: 0.2s;
    color: black;
}

#team a:hover {
    color: #697eb6;
}

#team-proj {
    width: 94%;
    display: flex;
    vertical-align: middle;
    font-size: 2cqmax;
    margin-left: 3%;
    border-top: .1cqmax solid black;
}

#team-proj h2 {
    color: #f5893e;
    text-shadow: 2px 2px black;
}

#meet {
    display: flex;
    font-size: 1.8cqmax;
    margin-top: 2cqmax;
    justify-content: center; 
}

#meet h3 {
    font-weight: 500;
    color: black;
}

#memb-box {
    display: flex;
    justify-content: center;
}

#team-memb {
    display: inline-flex;
    width: 80%;
    list-style: none;
    margin-top: 2%;
    font-weight: 400;
}

.memb {
    margin: auto;
    font-size: 2.5cqmin;
    font-style: italic;
}

.memb a {
    font-weight: 600;
    font-style: normal;
}

#project {
    margin: auto;
    width: 100%;
    display: inline;
}

#our-proj {
    width: 94%;
    margin-top: 6%;
    display: inline-flex;
    font-size: 1.3cqmax;
    font-size: 2cqmax;
    margin-left: 3%;
    border-top: .1cqmax solid black;
}

#our-proj h2 {
    color: #f5893e;
    text-shadow: 2px 2px black;
}

#divine {
    display: inline-flex;
    justify-content: center;
    margin-top: 7%;
    font-size: 1.8cqmax;
}

#divine-logo {
    animation: pulse 5s infinite;
    margin-top: -10%;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
        background-color: transparent;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.8;
        background-color: transparent;
    }
}

#idle {
    position: absolute;
    margin-left: 30cqmin;
    background-color: transparent;
    margin-top: -10cqmin;
}

#desc-section {
    justify-content: center;
    width: 100%;
    margin-top: -8cqmin;
}

#description1 {
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 1.2cqmax;
}

#description1 p {
    color: #697eb6;
    font-style: italic;
    margin-top: 4cqmin;
}

#description1 img {
    width: 10cqmin;
    height: 10cqmin;
}

#description2 {
    display: flex;
    margin-top: 2%;
    width: 60%;
    margin-left: 20%;
    text-align: center;
    font-size: 1.5cqmax;  
}

#description2 p {
    color: black;
    font-weight: 500;
}

#art-box1 {
    display: flex;
    vertical-align: middle;
    margin-top: 4%;
    width: 100%;
    justify-content: center;
}

#art-box2 {
    display: flex;
    vertical-align: middle;
    margin-top: 4%;
    width: 100%;
    justify-content: center;
}

footer {
    margin-top: 10%;
    margin-bottom: 0cqmax;
    display: flex;
    width: 100%;
    justify-content: space-around;
    height: 10cqmin;
    background-color: black;
    vertical-align: middle;
}

footer p {
    margin-top: 3.5cqmin;
    margin-bottom: 2cqmin;
    background-color: transparent;
}

.myclass {
    transition: all 1s;
    opacity: 0;
}   

.btn.show {
    opacity: 1;
    display: flex;
    position: fixed;
    height: 6cqmin;
    width: 6cqmin;
    margin-top: 16%;
    margin-left: 90%;
    z-index: 1;
    transition: all 0.6s;
    border: none;
    background-color: black;
    border: 2px solid #f5893e;
    border-radius: 25%;
}

.btn.hide {
    opacity: 0;
    display: flex;
    position: fixed;
    height: 6cqmin;
    width: 6cqmin;
    margin-top: 16%;
    margin-left: 120%;
    z-index: 1;
    transition: all 0.6s;
}

/* Media Queries */

@media only screen and (max-width: 960px) {

    * {
        max-width: 100%;
    }

    #itch {
        margin-right: 10%;
        transition: 0.2s;
    }

    #itch:hover {
        transform: scale(1.3);
        margin-right: 10cqmin;
    }

    #team {
        margin-top: 20%;
    }

    #meet {
        margin-top: 2%;
    }

    .memb {
        margin: 2cqmin;
        width: 100%;
    }

    #team-memb {
        margin: 0%;
        display: inline-flex;
        width: fit-content;
    }

    #divine {
        display: flex;
        margin-top: 8%;
        width: 120%;
    }

    #art-box1 img {
        width: 80%;
    }

    #art-box2 img {
        width: 60%;   
    }

    .btn.show {
        opacity: 1;
        display: flex;
        position: fixed;
        height: 6cqmin;
        width: 6cqmin;
        margin-top: 40cqmax;
        margin-bottom: 20cqmin;
        margin-left: 92%;
        z-index: 1;
        transition: all 0.6s;
    }

    .btn.hide {
        opacity: 0;
        display: flex;
        position: fixed;
        height: 6cqmin;
        width: 6cqmin;
        margin-left: 120%;
        margin-top: 40cqmax;
        z-index: 1;
        transition: all 0.6s;
    }

    footer {
        height: 7%;
    }
}

/* Scroll-to-top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    padding: 10px 20px;
    background-color: #f5893e;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 999; /* Make sure it's on top */
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top-btn:hover {
    background-color: #ff7a00;
    transform: scale(1.1);
}
