@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');


body {
    background-color: #FAD1E2;
    background: linear-gradient(60deg, #fff4c4d4, #f76aa76b 80%);
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    font-family: "Poppins";
}

.page_title {
    text-align: center;
    background-color: #f76aa7;
    color: #FFFFFF;
    height: 300px;
    width: 96%;
    margin: 10px auto;
    border-radius: 25px;
    position: relative;
    left: 0px;
    right: 0px;
    top: 0;
}

.page_title h1 {
    margin-bottom: 0;
}

.title_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.title_text h1 {
    font-size: 50px;
}

.articles_type {
    text-align: center;
    font-size: 30px;
}

.articles {
    display: flex;
    justify-content: space-evenly;
}
.article_box {
    width: 30%;
    height: 400px;
    border: 2px solid #F76AA7;
    border-radius: 25px;
    position: relative;
    margin-bottom: 20px;
}

.article_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.article_content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    font-size: 30px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.482);
    color: white;
    opacity: 0;
    transition: 0.2s ease;
    border-radius: 25px;
}

.article_content:hover {
    opacity: 100%;
    transition: 0.6s ease;
}

.article_td {
    margin-bottom: 100px;
    border-bottom: 1px solid white;
}