.explain{
    min-height: 100vh;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(84, 126, 17, 0.5),rgba(81, 190, 204, 0.5)),url(../images/banner2.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    margin: auto;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: auto;
    padding-right: auto;
}
.explain h1{
    padding-top: 25px;
    font-size: 36px;
    font-weight: 600;
    color: white;
    font-family: 'Poppins';
}
.explain p{
    color:whitesmoke;
    font-size: 25px;
    font-family: 'Merienda', cursive;
    font-weight: 300;
}
.threat{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.vul,.endanger,.crit{
    flex-basis: 31%;
    background: linear-gradient(rgba(236, 145, 145, 0.7),rgba(242, 243, 245, 0.7));
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    margin-left: 8px;
    margin-right: 8px;
    box-sizing: border-box;
}
.vul p,.endanger p,.crit p{
    color: black;
    font-family: 'Courgette', cursive;
    font-size: 20px;
}
.vul h2,.endanger h2,.crit h2{
    text-align: center;
    color: black;
    font-family: 'Merienda', cursive;
    font-weight: 600;
    margin: 5px 0;
}
.vul:hover,.endanger:hover,.crit:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.9);
}
.vul:hover{
    background-color: crimson;
    transition: 2s;
    transform: scale(1.5, 1.5) translate(100px,-50px);
}
.endanger:hover{
    background-color: crimson;
    transition: 2s;
    transform: scale(1.5, 1.5) translate(0,-50px) ;
}
.crit:hover{
    background-color: crimson;
    transition: 2s;
    transform: scale(1.5, 1.5) translate(-100px,-50px);
}
@media(max-width: 700px){
    .threat{
        flex-direction: column;
    }
    .vul:hover,.endanger:hover,.crit:hover{
        box-shadow: 0 0 20px 0px rgba(0, 0, 0, 1);
        transform: none;
    }
    .explain{
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
/*Next*/
.end{
    background-color: steelblue;
    display: flex;
    position: relative; 
    padding:30px 35px 30px 30px;
}
.end img{
    width: 150px;
    height: 100px;
}
.end-div1{
    flex:1;
    text-align: right;
}
.end-div1 address{
    font-size: 20px;
    font-family: 'Zen Kurenaido', sans-serif;
}
.end-div2{
    position: absolute;
    bottom:30px;
}
.end-div2 p{
    font-size: 20px;
    font-family: 'Zen Kurenaido', sans-serif;
}

.fa {
    padding: 10px;
    font-size: 20px;
    width: 20px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
}
.fa:hover {
    opacity: 0.7;
}
.fa-facebook {  
    background: #3B5998;
    color: white;
}
.fa-twitter {
    background: #55ACEE;
    color: white;
}
.fa-google {
    background: #dd4b39;
    color: white;
}
.fa-linkedin {
    background: #007bb5;
    color: white;
}
.fa-youtube {
    background: #bb0000;
    color: white;
}
.fa-instagram {
    background: crimson;
    color: white;
}
@media(max-width: 700px){ 
    .end{
        padding:15px 15px 15px 15px;
    }
    .end-div2{
        bottom: 15px;
    }
    .end-div2 p{
        font-size: 15px;
    }
    .end img{
        width: 100px;
    }
}