@import url("https://fonts.googleapis.com/css?family=Crimson+Text:400,400i,600,600i,700,700i|Oxygen:300,400,700");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Oxygen', sans-serif;
}

.blogs{
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: start;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 50px;
    background-color: whitesmoke;
}

.blogbox{
    box-shadow: 0 0 10px gray;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 330px;
    margin: 20px;
}

.blogimg{
    height: 70%;
    width: 100%;
    & img{
        width: 100%;
        height: 100%;
    }
}

.blogcons{
    height: 30%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    & a{
        font-size: 20px;
        height: 100%;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        line-height: 1.5;

    }
}

.blogconent{
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: whitesmoke;
    padding: 50px;
}

.blogconbox{
    width: 90%;
    height: 90%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 50px;
}

.blogconbox p,.blogconbox dd,.blogconbox dt{
    font-size: 19px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.blogconbox h2, .blogconbox h3{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.blogconimg{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; 
    margin-bottom: 20px;
}
.blogconimg img{
    width: 400px;
}

.blogconbox p{
    width: 100%;
    text-align: center;
}

.blogconbox dl{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}
.blogconbox dd{
    width: 50%;
    line-height: 1.5;
    text-align: center;
}

.blogconbox ul{
    width: 100%;
    line-height: 1.5;
}

.blogconbox li{
    font-size: 19px;
    margin-bottom: 10px;
}

.blogconbox ul li a{
    text-decoration: underline;
    font-weight: bold;
}

.blogpara{
    width: 100%;
    margin-bottom: 20px;
}

@media screen and (max-width:460px) {
    .blogs{
        padding: 15px;
    }
    .blogconimg img{
        width: 300px;
    }
    .blogconent, .blogconbox{
        padding: 15px;
    }
    .blogconbox h2{
        font-size: 24px;
    }
    .blogconbox dd{
        width: 100%;
    }
    .blogconbox ul{
        line-height: 1.2;
    }
}