body {
    text-align: center;
    font-family:'Montserrat';
    color: #262722;
    margin: 0px;

}

.hero-img{
    width: 25%;
    background-color: #a8aba5;
    padding: 10px 30px;
    border-radius: 10px;
    box-shadow: 0 0 6px black;
    
}
.hero {
    background-image: url('images/dubai-skyline.jpg');
    width: auto;
    height: 650px;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;

}
#hero-h3{
    background-color: #698078;
    color: white;
    border: 4 px solid transparent;
    border-radius: 10px;
    padding: 0.3rem 0.7rem;
    box-shadow: 0 0 3px black;
}
.outside {
    display: inline-block;
    padding-top: -10px;
    transform: rotate(-15deg);
    transform-origin:left;
    text-shadow: 0 0 3px black;
    color: #e98a4b;
    font-weight: bolder;
}


.middle {
    /* border: 1px dotted blue; */
    background-color: #fde5d9;
    text-align: center;
    padding-bottom: 2rem;
}

.middle-title{
    padding: 2rem;
    margin-top: 0;
    text-shadow: 0 0 2px #698078;
    width: 80%;
    margin: auto;
}

#middle-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    width: 90%;
    margin: auto;

}
.activity-item{
    /*border: 1px dotted green;*/
    display: flex;
    flex-direction: column;
    flex-basis: 220px;
    flex-grow: 1;
}
.box-img{
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 0 0 10px black;
    margin: 0 auto;
    overflow: hidden;

}
.test{
    width: 50%;
    margin: auto;
}
.activity-img{
    width: 100%;
    height: 100%;
    object-fit:  cover;
}
.activity-text {
    flex-grow: 1;
}

.footer {
    display: flex;
    flex-wrap: wrap;
}
.footer-card{
    /* border: 1px dotted red; */
    background-color: #a8aba5;
    display: flex;
    justify-content:space-around;
    align-items: start;
    border-radius: 0.6rem;
    border-bottom: 0.6rem solid #698078;
    box-shadow: 0 0 0.6rem black;
    margin: 4rem auto;

}
.footer-img{

    /* border: 1px dotted green; */
    background-size: contain;
    box-shadow: 0 0 10px #a8aba5;
    margin-left: 1.2rem;
    border-radius: 0.6rem;
    margin-top: 2.3rem;
    width: 60%;
}
.card-text{
    /* border: 1px dotted green; */
    margin-right: 20px;
    padding-left: 10px;
    margin-top: 25px;
}
.card-person{
    margin-bottom: 0px;
}

.margin-card-text {
    margin-top: 0px;
    font-style: italic;
}
#footer {
    display: flex;
    flex-wrap: wrap;
    
}
.footer-el{
    padding: 10px 20px;
    background-color: beige;
    border-radius: 5px;
    color: black;
    text-decoration: none;
    box-shadow: 0 1px 2px black;

    flex-grow: 1;
    flex-basis: 320px;
    margin: 0.5rem;


}

@media (min-width:768px){
    body{
    }

}
@media (min-width:590px){
    body{
    }
    #middle-activities {
        width: 80%;

    }

}