body {
    margin: 0;
    background-color: #F4FAFF;
    color: #250004
}

h1 {
    font-family: 'Montserrat', sans-serif;
}

p,li,a{
    font-family: 'Raleway', sans-serif;
}

header {
    width: 100%;
    height: 100px;
    background-color: #122F68;
    color: #F4FAFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1,header a {
    font-family: 'Montserrat', sans-serif;
    padding: 25px;
}

header a,header h1 {
    font-family: 'Montserrat', sans-serif;
    color:#F4FAFF;
    text-decoration: none;
}

@media only screen and (max-width: 1350px) {
    main {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 20px;
    }

    #text_content {
        max-width: 93%;
    }

    header h1,header a {
        font-size: 2rem;
    }
}

@media only screen and (min-width: 1350px) {
    main {
        display: flex;
        margin: 20px;
    }

    #text_content {
        max-width: 50%;
    }

    header h1,header a {
        font-size: 3rem;
    }
}

main a:link {
    color: #0053A6;
}

main a:visited {
    color: #5A1BB3;
}

main>div {
    margin: 20px;
}

#text_content p,li {
    font-size: 1.25rem;
}

#text_content a {
    display: inline-block;
    background-color: #122F68;
    color: #F4FAFF;
    font-size: 2rem;
    text-decoration: none;
    border-radius: 25px;
    padding: 15px;
    margin-right: 20px;
    margin-bottom: 10px;
}

#text_content a:active{
    background-color: #F4FAFF;
    color: #122F68;
}

#visual_content {
    display: grid;
    grid-template: 1fr 1fr / 50% 50%;
    grid-template-areas:
    "big big"
    "small1 small2";
    justify-items: center;
    grid-gap: 20px;
    min-width: 0;
    margin: 25px 40px 0;
}

#big {
    grid-area: big;
    width: 100%;
}

#small1 {
    grid-area: small1;
    width: 100%;
}

#small2 {
    grid-area: small2;
    width: 100%;
}