.SHOTBYMOUNIR-NAME {
    position: relative;
    height: 30px;
    background-color: transparent;
}

.page-title {
    color: thistle;
    background-color:  #9b71b2;
    width: auto;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
    font-weight: bold;
    border-radius: 25px;
    border-bottom: 1px solid #fbf1ff;
}

.Navigation {
    display: flex;
    gap: 30px;
}

.updates {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    text-decoration: none;
    color: thistle;
}

.About {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: thistle;
    text-decoration: none;
}

.Gallery {
    position: absolute;
    left: 85px;
    top: 50%;
    transform: translateY(-50%);
    text-decoration: none;
    color: thistle;
}

.home {
    position: absolute;
    right: 74px;
    top: 50%;
    transform: translateY(-50%);
    text-decoration: none;
    color: thistle;
}

.patch-notes{font-size: 16px;
line-height: 25px;
color: rgb(59, 59, 59) ;
font-family: Arial, Helvetica, sans-serif;}

h2{font-size: large;
font-weight: bold;
margin-top: 40px;
text-decoration: underline;}

h3{text-decoration: underline;}

.hamburger {
    display: none;
}

.mobile-menu {
    display: none;
}

.body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


@media (max-width: 600px) {

    .SHOTBYMOUNIR-NAME {
        height: 45px;
    }

    .page-title {
        height: 45px;
    }


    .hamburger {
        display: block;

        position: absolute;
        left: 10px;
        top: 50%;

        transform: translateY(-50%);

        background: none;
        border: none;

        font-size: 25px;
        color: thistle;

        z-index: 10;

        outline: none;
    }


    .Navigation {
        display: none;
    }


    .mobile-menu {
    position: absolute;

    top: 50px;
    left: 5px;

    width: 150px;

    background-color:  #9b71b2;

    padding: 8px 0;

    border-radius: 0 0 10px 10px;

    z-index: 20;
}

   .mobile-menu a {
    display: block;
    text-align: left;

    padding: 10px 20px;

    color: thistle;
    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;
}

}