.amatic-sc-regular {
  font-family: "Amatic SC", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.amatic-sc-bold {
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  font-style: normal;
}


body {
    background-image: url("images/paradox wallpaper 16x10.png");
    background-attachment: fixed;
}

.container {
    max-width: 60%;
    margin: auto;
    margin-top: 5%;
    display: grid;
    grid-gap: 5px;
    grid-template-columns: 20% minmax(0, 1fr);
}

header, nav, main, footer {
    background-color: lightgray;

    border-style: solid;
    border-color: gray;
    border-radius: 15px;

    padding: 10px;
}

header {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
    text-align: center;
    padding: 0px;
}

nav {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    height: max-content;
    text-align: left;
}

ul {
    list-style-type: none;
    padding: 0%;
    text-align: center;
}

a:link, a:visited {
    color: black;
    background-color: transparent;
    text-decoration: none;
}

a:hover, a:active {
    color: seagreen;
    background-color: transparent;
    text-decoration: underline;
}

main {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}

footer {
    grid-row: 3 / 4;
    grid-column: 1 / 3;
    max-height: max-content;
    padding-bottom: 5px;
}

#mainpara {
    margin-left:  30%;
    margin-right: 30%;
    background-color: rgb(200, 200, 200);
    padding: 20px;
    border-radius: 10px;
    border-color: rgb(150, 150, 150);
    border-style: solid;
}

.medialist {
    display: flex;
    flex-direction: column;
    justify-content: center;
}