.SHOTBYMOUNIR-NAME {
    position: relative;
    height: 30px;
    background-color: transparent;
}

.page-title {
    color: thistle;
    background-color: #3a1c36;
    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;
}

h2,h3,h4 {
  font-family: Arial, Helvetica, sans-serif;
  color:thistle;
  text-decoration: underline;
}

p{font-family: Arial, Helvetica, sans-serif;
color: aliceblue;
line-height: 30px;}

h2,h3,h4,p{ text-align: center;}

h2{margin-top: 250px;
font-weight: bold;}

.Socials {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    padding: 10px 20px;
    background-color: thistle;
    border-radius: 20px;
    color: #3a1c36 ;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold ;
  
}

.Socials:hover {cursor: pointer;
background-color:#3a1c36;
color:thistle;
box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.20)}

.Socials:active {
    opacity: 0.7;
}

a {
    text-decoration: none;
}

.site-footer {
    margin-top: 50px;
    padding: 20px;
    text-align: center;

    font-family: Arial, Helvetica, sans-serif;
    color: thistle;

    border-top: 1px solid thistle;
}

.hamburger {
    display: none;
}

.mobile-menu {
    display: none;
}


@media (max-width: 600px) {

    .hamburger {
        display: block;
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);

        background: none;
        border: none;
        outline: none;

        font-size: 25px;
        color: thistle;

        z-index: 30;
    }

    .Navigation {
        display: none;
    }

    .mobile-menu {
     display: none;

    position: absolute;
    top: 50px;
    left: 5px;

    width: 150px;

    background-color:  #9b71b2;

    padding: 8px 0;
    border-radius: 0 0 10px 10px;

    z-index: 100;
}

.mobile-menu.show-menu {
    display: block;
}

.mobile-menu a {
   display: block;
    padding: 10px 20px;

    color: thistle;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}
}