@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700&display=swap');

body {
    background: #212529;
    color: #212529;
    font-family: 'Open Sans', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
    height: auto;
}

.container a {
    color: #E9ECEF;
    font-weight: 500;
}

.content {
    background-color: #E9ECEF;
    border-radius: 5px;
    padding: 10px 30px;
    width: 60%;
    margin-bottom: 10px;
}

h1 {
    color: #E83151;
    font-weight: 700;
    text-transform: uppercase;
}

h2 {
    color: #E83151;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
}

p {
    font-size: 16px;
    font-weight: 400;
}

.content a {
    color: #212529;
    font-weight: 700;
}

strong {
    color: #212529;
    font-weight: 700;
}

hr {
    border: dashed 1px #212529;
}

.maj {
    border: solid 2px #212529;
    padding: 0 15px;
    margin: 15px;
}

@media only screen and (max-width: 1200px) {
    .container {
        margin: 30px;
    }
    .content {
        width: 100%;
    }
    .maj {
        margin: 5px;
    }
    h1 {
        font-size: 25px;
    }
    h2 {
        font-size: 15px;
    }
    p, .container a, li {
        font-size: 14px;
    }
}