.content {
    display: grid;
    justify-items: center;
    margin-left: 10px;
    margin-right: 10px;
}

main{
    margin-bottom: 50px;
}

h1 {
    margin-bottom: 40px;
}

.content p {
    margin-bottom: 20px;
    width: 280px;
}

.content a {
    color: #9D2235;
}

@media only screen and (min-width: 375px) {
    .content p {
        width: 300px;
    }
}


@media only screen and (min-width: 425px) {
    .content p {
        width: 75%;
    }
}

@media only screen and (min-width: 768px) {
    .content p {
        width: 80%;
    }
}

@media only screen and (min-width: 1024px) {
    main{
        min-height: 80vh;
        margin-bottom: 50px;
    }
}

@media only screen and (min-width: 1200px) {
    .content p {
        width: 1070px;
    }
}