body {
    min-height: 1000px;
}

main {
    font-family: Arial, Helvetica, sans-serif;
    min-height: 800px;
    width: 1800px;
    background-color: #f5faf9;
    border-left-style: solid;
    border-right-style: solid;
    border-width: 1px;
    border-color: rgb(0, 0, 0);
    margin-left: auto;
    margin-right: auto;
}

#textContent {
    float: left;
    text-align: left;
    color: black;
    height: 400px;
    width: 850px;
    margin-top: 170px;
    margin-left: 220px;

    overflow-y: scroll;
}

h1 {
    font-size: 60px;
    font-weight: lighter;
    text-decoration: none;
}

#imageDiv {
    float: right;
    margin-top: 0px;
    height: 800px;
}

#mainImage {
    height: 800px;
    width: auto;
    clip-path: inset(0px 0px 0px 220px);
}

footer {
    position: fixed;
    bottom: 0px;
}

::-webkit-scrollbar {
    width: 10px;
}

@media only screen and (max-width: 1800px) {
    main {
        max-width: 1200px;
    }

    #textContent {
        width: 400px;
        margin-top: 70px;
        margin-left: 110px;
    }

    #blogLink {
        color: black;
    }

    #codeLink {
        color: black;
    }

    #blogLink:hover {
        color: rgb(24, 78, 70) !important;
    }

    #codeLink:hover {
        color: rgb(24, 78, 70) !important;
    }
}