@import url('https://fonts.googleapis.com/css2?family=IM+Fell+French+Canon:ital@0;1&family=Ibarra+Real+Nova:ital,wght@0,400..700;1,400..700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.im-fell-french-canon-regular {
    font-family: "IM Fell French Canon", serif;
    font-weight: 400;
    font-style: normal;
}

.im-fell-french-canon-regular-italic {
    font-family: "IM Fell French Canon", serif;
    font-weight: 400;
    font-style: italic;
}

body {
    font-family: "IM Fell French Canon", serif;
    color: black;
    background-color: #E7EFC7;
    background-image:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.5) 10%,
            rgba(255, 255, 255, 0) 10%,
            rgba(255, 255, 255, 0) 20%,
            rgba(255, 255, 255, 0.5) 20%,
            rgba(255, 255, 255, 0.5) 30%,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.5) 40%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0.5) 70%,
            rgba(255, 255, 255, 0) 70%,
            rgba(255, 255, 255, 0) 80%,
            rgba(255, 255, 255, 0.5) 80%,
            rgba(255, 255, 255, 0.5) 90%,
            rgba(255, 255, 255, 0) 90%,
            rgba(255, 255, 255, 0) 100%),
        linear-gradient(0,
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.5) 10%,
            rgba(255, 255, 255, 0) 10%,
            rgba(255, 255, 255, 0) 20%,
            rgba(255, 255, 255, 0.5) 20%,
            rgba(255, 255, 255, 0.5) 30%,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.5) 40%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0.5) 70%,
            rgba(255, 255, 255, 0) 70%,
            rgba(255, 255, 255, 0) 80%,
            rgba(255, 255, 255, 0.5) 80%,
            rgba(255, 255, 255, 0.5) 90%,
            rgba(255, 255, 255, 0) 90%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 20em 20em;
    background-position: 50% 50%;

}

/*parent grid is the whole body kinda but it's the container*/
.parent-grid {
    margin: 60px 200px;
    display: grid;
    grid-gap: 30px;
    grid-template-columns: 250px auto 250px;
}

/*child grid, im using this class for each of the items inside whatever panel that has grids inside it*/
.child-grid {
    /*background-color: #FAF3DF;
    border: #463832 solid 2px;
    border-radius: 5px;*/
    grid-gap: 10px 0;
    
}

#header,
#left-col,
#main-col,
#right-col,
#footer {
    background-color: white;
    border: black solid 2px;
    padding: 10px;

}

#header {
    grid-row: 1 / 2;
    grid-column: 1 / 4;
    text-align: center;
}

#left-col {
    grid-row: 2 / 4;
    grid-column: 2 / 1;
    height: min-content;
}

#main-col {
    grid-row: 2 / 4;
    grid-column: 2 / 3;
    display: grid;
    grid-template-rows: subgrid;
}

#logo {
    grid-row: 2 / 3;
    grid-column: 3 / 4;
    height: min-content;
}

#right-col {
    grid-row: 3 / 4;
    grid-column: 3 / 4;
    display: grid;
    grid-template-rows: subgrid;
    height: max-content;
}

#footer {
    grid-row: 4 / 5;
    grid-column: 1 / 4;
}

#aboutme,
#main-item {
    padding: 0px 10px;
    border-width: 7px;
    border-style: solid;
    border-image: url("https://i.imgur.com/NJa4bp2.png") 8 fill round;
}

#aboutme {
    grid-row: 1/2;
}

#main-item {
    grid-row: 2/3;

}