html {
    background-color: #f4f4f4;
    height: 100%;
    width: 100%;
    font-family: "FiraCode", monospace;
}
main {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 0.3fr 1fr 0.1fr;
    height: 90%;
    background: linear-gradient(to right, darkorchid, #ff8c00) 1;
    
}

header {
    grid-row: 1 / 1;
    grid-column: 1 / 1;
    min-width: 80%;
    align-self: center;
    justify-self: start;
    padding-left: 10%;
}

header {
    color: #161616;
    font-weight: 400;
    font-size: calc(2rem + 0.390625vw);
}

header > h3 {
    font-size: calc(1rem + 0.390625vw);
    font-weight: 200;
}

a[href] {
    color: #ff8c00;
}

#surname {
    color: darkorchid;
}
#period {
    color: #ff8c00;
}

section {
    display: grid;
    grid-row: 2 / 2;
    width: min(80%, 1080px);
    height: min(100%, 1920px);
    background-color: #ffffff;
    border-width: 2px;
    border-style: solid;
    border-image: linear-gradient(to right, darkorchid, #ff8c00) 1;
    color: #161616;
    align-self:center;
    justify-self: center;
    font-weight: lighter;
}

article {
    align-self: center;
    justify-self: center;
    width: 80%;
    height: 80%;
}

footer {
    color: #a8a8a8;
    width: 60%;
    grid-row: 3/3;
    text-align: center;
    justify-self: center;
    align-self: end;
}

iframe {
    padding-bottom: 5%;
}

@font-face {
    font-family: 'FiraCode';
    src: url(./fonts/FiraCode-VariableFont_wght.ttf);
}