*{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}
body{
    background-color: rgb(129, 105, 223);
}
.container{
    background-color: rgba(64, 23, 107, 0.5);
    color: #ffffff;
    padding: 30px;
    margin: 50px auto;
    border-radius: 20px;
    border: 5px solid rgb(255, 255, 255);
    max-width: 1200px;
    width: 100%;
}
.container p{
    text-align:justify;
    font-size: 24px;
    max-width: 1100px;
    width: 100%;
    margin: auto;
    line-height: 140%;
}
.container h1{
    text-align: center;
    margin: 5px auto 20px auto;
    font-size: 32px;
    flex-wrap: wrap;
    max-width: 900px;
    width: 100%;
}
.center-block{
    max-width: 320px;
    width: 100%;
    height: 320px;
    background-color: #f1f1f1;
    margin: 50px auto 50px auto;
    padding: 17px;
    box-shadow: 15px 13px 6px rgba(0, 0, 0, 0.55);
    border-radius: 20px;
    transition: transform 0.7s ease;
}
.center-block:hover{
    transform: scale(1.1);
}    
.center-block img {
    display: none;
    width:  100%;
    height: 100%;
    border-radius: 27px;
    border: 3px solid black;
    }
    
.center-block img.active {
    display: block;
}
.footer_text{
    padding: 10px 20px;
    max-width: 900px;
    text-align: center;
    width: 100%;
    margin: auto;
}
.footer_text span{
    font-size: 30px;
    font-weight: 550;
}
.footer_text p{
    margin-top: 20px;
    font-size: 25px;
    text-align: justify;
    line-height: 140%;
}
.footer_text a{
    display: inline-block;
    font-size: 28px;
    color: darkred;
    font-style: italic;
    transition: all 1s ease;
}
.footer_text a:hover{
    transform: scale(1.2);
    color: #9a9999;
}
@media(max-width: 768px){
    
    .container{
       max-width: 600px;
       width: 80%;
    }
    .container h1{
        font-size: 20px;
    }
    .container p{
        font-size: 16px;
        max-width: 500px;
        width: 100%;
    }

    .center-block{
        max-width: 250px;
        width: 90%;
        height: 250px;
        box-shadow: 12px 10px 6px rgba(0, 0, 0, 0.55);
    }
}
