@import url("https://fonts.googleapis.com/css?family=Quicksand:400,500,700&subset=latin-ext");
* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}
body {
    background-image: linear-gradient(-20deg, #ff2846 0%, #6944ff 100%);
    font-family: 'Quicksand', sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    color: #324e63;
    overflow: hidden;
}
h1 {
    font-size: 30px;
}
a {
    color: #324e63;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #6944ff;
}
.center {
    width: 75%;
    max-width: 800px;
    height: auto;
    box-shadow: 0px 8px 60px -10px rgba(13, 28, 39, 0.6);
    border-radius: 12px;
    margin: 150px auto;
    background-color: #fff;
    position: relative;
}
.img {
    width: 150px;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(-50%);
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 4;
    box-shadow: 0px 5px 50px 0px #6c44fc, 0px 0px 0px 7px rgba(107, 74, 255, 0.5);
}
.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text {
    margin-top: -35px;
    text-align: center;
    padding: 0 20px;
    padding-bottom: 40px;
    transition: all .3s;
}
.synopsis {
    font-weight: 700;
    font-size: 24px;
    color: #6944ff;
    margin-bottom: 15px;
}
.address {
    font-size: 18px;
    font-weight: 500;
    color: #324e63;
    margin-bottom: 15px;
}
.description, .descriptio {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #324e63;
    margin-bottom: 10px;
}
.descriptio {
    line-height: 50px;
}
.inf {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 20px;
}
.item {
    padding: 10px 35px;
    min-width: 150px;
    transition: transform 0.3s ease;
}
.item:hover {
    transform: translateY(-5px);
}
.title {
    font-weight: 700;
    font-size: 27px;
    color: #324e63;
}
.txt {
    font-weight: 500;
    margin-top: 7px;
    color: #666;
}
.below {
    width: 100%;
    height: 60px; 
    background: #fff;
    line-height: 60px;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0; 
}
.copyright {
    color: rgba(13, 28, 39, 0.6);
}
@media (max-width: 768px) {
    body {
        overflow: auto;
        -ms-overflow-style: none; 
        scrollbar-width: none; 
        padding: 20px 10px;
    }
    
    body::-webkit-scrollbar {
        display: none; 
    }
    
    .center {
        width: 95%;
        margin: 100px auto 50px;
    }
    
    .img {
        width: 120px;
        height: 120px;
    }
    
    .synopsis h1 {
        font-size: 24px;
    }
    
    .address, .description, .descriptio {
        font-size: 16px;
    }
    
    .item {
        padding: 10px 20px;
        min-width: 130px;
    }
    
    .title {
        font-size: 22px;
    }
    
    .inf {
        flex-direction: column;
        align-items: center;
    }
}
@media (min-width: 769px) {
    .center {
        max-height: 80vh;
    }
}