*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
body {
    background-color: #F5C7FC;
    
}
.topnav {
    background-color: #333;
    overflow: hidden;
}
  /* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 17px;
}
 /* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}
/* Add a color to the active/current link */
.topnav a.active {
    background-color: white;
    color: black;
}
.detail {
    margin-left: 0%;
    margin-top: 15%;
    float: left;
    width: 45%;
    padding: 30px;
    padding-left:40px;
    padding-right: 40px;
    height: 450px;
    margin:30px;
    margin-right:30px;
    margin-bottom: 50px;
    background-color: rgb(5, 5, 5);
    line-height:2;
}
.detail h1 {
    font-size: 50px;
    color: rgb(250, 248, 248);
    margin-bottom: 20px;
    font-style: normal;
}
span {
    color: #F5C7FC;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-style:italic;
}
.detail p {
    color: rgba(255, 255, 255, 0.829);
    line-height: 22px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.operation-hours {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: rgb(205, 121, 211);
}
.image {
    width: 40%;
    height: 60%;
    position: absolute;
    bottom: 0%;
    right: 10px;
}
.image img {
    height: 100%;
    position: absolute;
    left: 50%;
    bottom: 25%;
    transform: translateX(-50%);
    transition: bottom 1s, left 1s ;
}
.image:hover .studiopic {
    left: 40%;
}
.list-picture {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap:15px;
}
.pic {
    position: relative;
    height: 230px;
    border-radius: 10px;
    box-shadow: 3px 3px 5 px lightpink;
    cursor: pointer;
    overflow: hidden;

}
.pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.caption {
    position: absolute;
    color: white;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.3s;
}
.pic:hover .caption {
    transform: translateY(0%);
}
.footer {
    background-color: #0c0c0c !important;
    color: #FFFFFF !important;
    font-style: normal !important;
    padding-top: 2.35vw !important;
    padding-bottom: 1vw !important;
    margin-top: 10px !important;
}
.footer br {
line-height:22px;
}