* {
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

#wrapper {
    width: 100%;
    margin: auto;
}

.clearfix::after {
    clear: both;
    display: block;
    content: "";
}

#Background {
    min-height: 100vh;
    width: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 120px;
    flex-direction: column;
}


#Menu img {
    width: 50px;
}

#Menu {
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    min-height: 80px;

    display: flex;
    align-items: center;

    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 0 32px;
    gap: 20px;
    overflow: hidden;
}

#Menu a {
    text-decoration: none;
    color: gray;
    margin-left: 10px;
    font-size: 18px;
}


#Menu a:hover {
    color: white;
    font-size: 19px;
}

#logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.scroll {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    flex: 1;
    justify-content: flex-start;
    scroll-behavior: smooth;
    scrollbar-width: none;
    min-width: 0;
    padding-left: 20px;
}

.scroll::-webkit-scrollbar {
    display: none;
}

.item {
    flex: 0 0 auto;
}

.item a {
    display: block;
    padding: 8px 14px;
}

.container {
    width: 65%;
    margin: 10px auto;
    padding: 40px;
    border-radius: 24px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container iframe {
    width: 100%;
    max-width: 900px;
    height: 500px;
    border-radius: 12px;
}

.container h2 {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0.85;
}

#Repo {
    width: 25%;
    margin: 10px auto;
    padding: 30px;
    border-radius: 24px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    color: white;
}

#Repo h2 {
    font-size: 22px;
    margin-bottom: 20px;
    opacity: 0.85;
    text-align: center;
}

#Repo h3 {
    text-align: center;
}

#Repo a {
    display: block;
    text-align: center;
    color: white;
    text-decoration: none;
    margin-top: 10px;
    font-weight: bold;
}

#Repo a:hover {
    text-decoration: underline;
}


@media (max-width: 900px) {
    #Menu {
        width: 95%;
        padding: 12px 16px;
        gap: 10px;
        min-height: auto;
    }

    #logo {
        font-size: 18px;
    }

    #Menu img {
        width: 36px;
    }

    #Menu a {
        font-size: 14px;
    }

    .scroll {
        gap: 4px;
        padding-left: 12px;
    }

    .item a {
        padding: 6px 10px;
    }

    .container,
    #Repo {
        width: 95%;
        padding: 20px;
    }

    .container iframe {
        height: 300px;
    }
}