.card-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-note-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 80px;
    position: relative;
    top: 35px;
    background: var(--main-background);
    border-radius: 20px;
    border: 4px solid var(--main-white);
}

.card-note-title h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--main-white);
}

.card-note-content {
    display: flex;
    flex-direction: column;
    width: 435px;
    height: 285px;
    background: var(--main-white);
    border-radius: 20px;
    padding: 80px 28px;
    gap: 30px;
}

.card-note-content p {
    font-family: 'Open sans', sans-serif;
    font-size: 18px;
    text-align: center;
    color: var(--main-background);
    font-weight: 700;
}

.card-note-content p b {
    font-weight: 800;
}

@media (max-width: 980px) {
    .card-note-content {
        width: 100%;
        height: auto;
    }

    .card-note-content p {
        font-size: 0.9rem;
        font-weight: 400;
    }
}