:root {
    --black: rgb(0, 0, 0);
    --green: #b8d323;
    --white: rgb(200, 200, 200);
}
a {
    text-decoration: none;
    color: var(--white);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body {
    width: 100%;
    background-color: var(--black);
    color: var(--white);
    padding: 20px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: start;
    align-items: start;
}
.base_title {
    font-size: 34px;
    color: var(--green);
}
.base_description {
    font-size: 14px;
}
.serial_content {
    width: 100%;
}
.serials {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: start;
    align-items: start;
}
.serial_wrap {
    flex: 1 1 20%;
    max-width: 500px;
    min-width: 300px;
    padding: 10px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: start;
}
.serial_img {
    position: relative;
    max-width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    aspect-ratio: 0.75;
    border-radius: 10px;
}
.serial_src {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}
.serial_content {
    padding: 10px;
    padding-top: 20px;
}
.serial:hover .serial_content_title {
    color: var(--green);
}
.serial_content_title {
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
}
.serial_img:hover > img {
    transform: scale(110%);
    transition: 0.3s ease;
}
.serial_img > img {
    transform: scale(100%);
    transition: 0.3s ease;
}