*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
.hero{
    position: relative;
    width: 100%;
    height: 100vh;
    background: #eff4fd;
}
.logo{
    color: orange;
}
nav{
    display: flex;
    width: 94%;
    margin: auto;
    padding: 20px 0;
    align-items: center;
    justify-content: space-between;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;

}
nav ul li a{
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
nav ul li a:hover{
    color: red;

}
.details{
    margin-left: 8%;
    margin-top: 11%;
}
.details h1{
    font-size: 50px;
    color: #212121;
    margin-bottom: 20px;
}
span{
    color:purple;
}
.details p{
    color: #555;
    line-height: 22px;
}
.details a{
    background-color: #212121;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    display: inline-block;
    margin: 30px 0;
    border-radius: 5px;
}
.image{
    width: 95%;
    height:1px;
    display: flex;
    justify-content:right;
    align-items: center;
    margin-top: 0;
    margin-right: 60px;
    margin-bottom: 100px;
    
}
.image img{
    height: 450px;
    width: 420px;
    border-radius: 50%;
    border: 10px solid #fff;
}