.cover {
    height: 275px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #393939;
    background-image: var(--url-cover);
    background-position: center;
    background-size: cover;
    position: relative;
}

.cover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.400);
    z-index: 1;
}

.cover .container {
    text-align: center;
    z-index: 1;
}

.cover .container h1 {
    font-size: 30px;
    font-weight: 500;
}

.cover .container p {
    font-size: 14.5px;
}

@media screen and (max-width: 600px) {
    .cover {
        height: 250px;
    }

    .cover .container h1 {
        font-size: 25px;
    }
}
