/*This is Comment!*/

.navigation{
    display: flex;
    gap: 3%;
    list-style: none;
    min-height: 60px;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}
.navigation a:link, a:active{
    color: black;
    text-decoration: none;
}
.navigation a:hover, a:visited{
    text-decoration: none;
}
.main{  
    background-image: url(image/image_1.jpg);
    background-size: cover;
    display: block;
    width: 100%;
    min-height: 850px;
}
.aside-left{
    color: white;
    width: 33%;
    font-size: 25px;
    padding-top: 2%;
    padding-left: 6%;
}
.text{ 
    display: flex;
    justify-content: center;
}
.text-1{
    width: 90%;
    text-align: center;
}
.row{
    margin-top: 3%;
    gap: 4%;
    margin-left: 5%;
    margin-right: 5%;
    display: flex;
    justify-content: center;
}
.column{
    text-align: center;
    width: 30%;
}
.body{
    background-color: rgba(234, 197, 251, 0.705);
    gap: 0%;
    display:flex;
    justify-content: center;
}
.text-right{
    margin-top: 6.4%;
    margin-left: 4%;
    margin-right: 9%; 
    width: 50%;
}
.image-left{
    margin-top: 8%;
    margin-left: 7%;  
}

.body-2{
    background-color: rgba(234, 197, 251, 0.705);
    display: flex;
    justify-content: center;
}
.text-left{
    margin-top: 8%;
    margin-left: 7%;
    width: 50%;
}
.image-right{
    margin-top: 6.4%;
    margin-left: 4%;
    margin-right: 3%;
    margin-bottom: 6%;
}
.footer{
    margin: 5%;
    text-align: center;
    height: 150px;
}
h1,ul,h4,p{
    font-family: 'Roboto', sans-serif;
}
@media (max-width:992px) {
    .row{
        display: block;
    }
    .column{
        width: 100%;
        margin: 1% auto;
        min-height: 30%;
        overflow: auto;
    }
    .main{
        display: block;
    }
    .aside-left{
        width: 100%;
        margin: 1% auto;
    }
}