.content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10% 0 10% 0;
}

.background {
    width: 100%;
    height: auto;
    background-color: rgba(127, 127, 127, 0.2);
    display: flex;
    align-items: center;
    padding: 10% 0 10% 0;
}

.content p strong {
    font-size: 2rem;
    color: rgba(50, 50, 50);
}

.content p {
    font-weight: 600;
    color: rgba(50, 50, 50);
}

.content a {
    font-weight: 600;
    color: rgba(50, 50, 50);
}

.content a:hover {
    color: rgba(50, 50, 50, 0.7);
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 900px) {
    .content p {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 500px) {
    .content p strong {
        font-size: 1rem;
    }
}