*{
    margin: 0;
    padding: 0;

}
body{
    background: #6479f1;
}
h1,h2{
    color: #810e0e;
}
.image img{
    width: 70%;
    height: 400px;
    border-radius: 30px;
    padding: 10px;
}
nav{
    background: #393a3a;
    padding: 10px;
    border-radius: 12px;
}
ul{
    list-style: none;
    display: flex;
    justify-content: space-around;
}
li{
    padding: 10px;
}
nav ul li a{
    text-decoration: none;
    color:white;
    font-size: 20px;
    padding: 10px;
    transition: .5s;
}
nav ul li a:hover{
    background: blue;
    padding: 10px 20px;
    border-radius: 4px;
}
.container{
    text-align: center;
    background: rgba(255, 255,255, .2);
    margin:20px ;
    border-radius: 12px;
}
.content h1{
    color:rgb(70, 9, 9);
    padding: 10px;
}
.content{
    width: 70%;
    text-align: center;
    margin:10px auto;
    padding: 20px;
   
}
.text{
    background: rgba(255, 255, 255, .1);
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 12px;
}
.text p{
    margin: 10px auto;
    width: 50%;
    line-height: 40px;
    font-size: 18px;
}
.image{
    background: rgba(255,255, 255, .1);
    padding: 10px;
margin: 10px;

}
.image p{
    font-size: 18px;
    width: 60%;
    line-height: 30px;
    margin: 10px auto;
    padding: 10px;
}
.text img{
width: 80%;
height: 500px;
border-radius:30px;
padding: 10px;

}
footer{
    display: flex;
    justify-content: space-evenly;
   
}
footer a img{
 bottom: 10px;
    border-radius: 50%;
    width: 50px;
    position: fixed;

}
.container a{
    transition: .5s;
}
.container a:hover{
scale: 1.2;
color: #b50d24;
}
@media (max-width:767px){
    nav{
        text-align: center;
        width: 90%;
        margin: auto;
    }
    ul{

        display: flex;
        flex-direction: column;
    }
    

    .content{
      
        text-align: center;
        margin: auto;
        padding: 20px;
    width: 90%;
    }
    .text p,.image p{
        width: 90%;
        line-height: 40px;
        font-size: 20px;
        padding: 20px;
    }
    .image{
        text-align: center;
        margin:20px auto;
        padding: 10px;
        overflow: hidden;
    }
    .image img{
        width:90%;
        height: 350px;
    }
    footer{
        display: flex;
        justify-content: space-around;
       
    }
    .text img{
        width:90%;
        height: 350px;
        margin: auto;
        }
    footer a img{
     bottom: 10px;
        border-radius: 50%;
        width: 40px;
        position: fixed;
    
    }  

}