* {
    box-sizing: border-box;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
}

.projects {
    width: 100%;
    height: 100vh;
    margin-bottom: 20px;
}

.banner {
    background: url("images/banner-pro.jpg");
    background-size: 100% 100%;
    width: 100%;
    height: 100vh;
    margin-top: 0;
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay h1 {
    color: rgb(14, 255, 255);
    font-size: 4vw;
}

#pro_blogs {
    background-color: #444;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-posts {
    width: 100%;
    display: block;
    justify-content: space-between;
    cursor: pointer;
}

.post_img {
    transition: .3s linear;
    width: 100%;
}

.cont {
    margin: 0;
    padding: 30px;
    transform: translateY(-60px);
    transition: .3s linear;
    text-align: center;
    background: white;
}

.cont h3 {
    font-size: 3vw;
}

.link {
    font-size: 15px;
}

.post:hover .post_img {
    transform: translateY(-80px);
}

.post:hover .cont {
    transform: translateY(-80px);
}

.bg_p1 {
    background-color: rgb(37, 4, 68);
    color: white;
}

.bg_p1 a {
    color: white;
}

.bg_p2 {
    background-color: #F2E205;
}

.bg_p2 a {
    color: black;
}

.bg_p3 {
    background-color: #E5DFF2;
}

.bg_p3 a {
    color: black;
}

.bg_p4 {
    background-color: #8738a8;
    color: white;
}

.bg_p4 a {
    color: white;
}