header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10%;
    padding: 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    background-color: rgb(38, 38, 38);
    
}
.menu-toggle {
    display: none; /* Hide toggle button by default */
    font-size: 2em;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
.logo {
    font-family: fantasy;
    font-size: 3em;
    color: rgb(215, 210, 210);
    user-select: none;
    margin-right: 10px;
}

.navigation a {
    

    position: relative;
    margin-right: 20px;
    font-size: 1.5em;
    color: white;
    text-decoration: none;
    font-weight: 500;
    
    gap: 40px;
    
    
    
}
.navigation a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 5px;
    transform: scaleX(0);
    transition: transform .5s;
}
.navigation a:hover::after {
    transform: scaleX(1);
}
.logout_hyp {
    position: relative;
    margin-right: 20px;
    display: inline-flex;
    justify-items: left;
    gap: 50px;
} 
@media (max-width: 825px) {
    .menu-toggle {
        display: block; /* Show toggle button on smaller screens */
        margin-right: 15%;
    }

    .navigation {
        display: none; /* Hide navigation by default */
        flex-direction: column;
        background-color: rgb(38, 38, 38);
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        padding: 10px 0;
        z-index: 98;
    }

    .navigation.active {
        display: flex; /* Show navigation when active */
    }

    .navigation a {
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid #444;
    }

    .navigation a:last-child {
        border-bottom: none;
    }
}
  
body {
    
    justify-content: center;
    align-items: center;
    display: fixed;
    min-height: 100vh;
    
    background: white;
    background-size: cover;
    background-position: center;

    
}

.container {
    display: flex;
    margin-top: 90px;

    justify-content: space-between;
    gap: 20px;
}
.wrapper {
    flex: 1;
    position:relative;
    margin-top: 50px;
    margin-right: 40px;
    width: 500px;
    height: 375px;
    border-radius: 20px;
    
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.wrapper2about {

    margin-top: 30px;
    margin-right: 20px;
    background: transparent;
    width: 930px;
    
    
}
.wrapper2training {
    margin-top: 10px;
    margin-right: 20px;
    
    background: transparent;
    
    
}
.headerband {
    display: flex;
    margin-top: 100px;
    height: 20%;
    width: 100%;
    background-image: url(imageband.jpg);
    justify-content: space-between;
    gap: 20px;
}
.pagename {
    margin-top: 30px;
    width: 950px;
    height: 300px; 
    
}
.pagenametext{
    font-size: 4em;
    margin-left: 60px;
    margin-top: 90px;
    color: black;
}
.pageimage {
    flex: 1;
    position:relative;
    
    margin-right: 50px;
    width: 500px;
    height: 350px;
    
    justify-content: center;
    align-items: center;
    overflow: hidden;  
} 


.heading {
    text-align: center;
    font-size: 3em;
}
.text {
    text-align: center;
    font-size: 3em;
}
.text1 {
    text-align: center;
    font-size: 2em;
}
.text2 {
    
    margin-left: 10px;
    font-size: 2em;
}
.text3 {
    
    margin-left: 10px;
    font-size: 1.5em;
}
.text4 {
    margin-left: 10px;
    font-size: 2em;
}
footer {
    margin-left: 0;
    margin-top: 50px;
    width: 100%;
    z-index: 99;
    
    background-color: rgb(38, 38, 38);
    color: antiquewhite;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.footer1 {
    margin-left: 20px;
}
.footer2 {
    flex: 1;
    margin-top: 130px;
    margin-left: 30px;
}
@media (max-width: 825px) {
    
        .container {
            margin-top: 10px;
            flex-direction: column;
            gap: 10px;
        }
        .headerband {
            border-radius: 10px;
            
        }
        .wrapper {
            flex: 0;
            justify-content: center;
            align-items: center;
            height: auto;
            width: 100%;
            margin: auto;
            
        }
        
        .wrapper2about {
            flex: 1 1 100%;
            width: 95%;
            height: fit-content;
            padding: 15px;
            
            
        } 
        
        .text4 {
            font-size: 1.5em;
        }
        .pagenametext {
            margin-left: 5px;
            font-size: 2em;
        }
    
}
@media (max-width: 825px) {
    
    .text {
        font-size: 2em;
    }
    .text1 {
        font-size: 1.5em;
    }
    .text2 {
        font-size: 1.5em;
    }
}
@media (max-width: 480px) {
    .text3 {
        font-size: 1.2em;
    }
    .logo {
        font-size: 2em;
    }
}