@font-face {
    font-family: "pixel";
    src: url("04B_03__.TTF");
}

body {
    font-family: pixel;
    font-size: 20px;
}

.container {
    width: max(60%, 480px);
    margin: auto;

    border-width: 2px;
    border-radius: 13px;
    border-style: solid;
    border-color: black;

    display: flex;
    flex-direction: column;
}

.subcontainer {
    width: auto;

    display: flex;
    flex-direction: row;
}

.header {
    margin: 10px;
    margin-bottom: 0px;
    width: auto;
    height: 120px;

    border-width: 2px;
    border-radius: 5px;
    border-style: solid;
    border-color: black;

    font-size: 50px;

    display: flex;
    flex-direction: row;
}

.navigation {
    margin: 10px;
    padding: 10px;
    width: 220px;
    height: auto;

    border-width: 2px;
    border-radius: 5px;
    border-style: solid;
    border-color: black;
}

.content {
    margin: 10px 0px;
    width: 100%;

    border-width: 2px;
    border-radius: 5px;
    border-style: solid;
    border-color: black;

    display: flex;
    justify-content: center;
}

.footer {
    margin: 10px;
    margin-top: 0px;
    padding: 10px;
    width: auto;
    height: 120px;

    border-width: 2px;
    border-radius: 5px;
    border-style: solid;
    border-color: black;
}

p {
    margin: 0px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ul.navbar li a {
    background-color: white;
    display: block;
    padding: 5px;
    padding-left: 10px;

    color: black;
    text-decoration: none;
}

ul.navbar li a:hover {
    background-color: rgb(235, 235, 235);
}

.titleText{
    margin: 10px;
    margin-left: 0px;
    margin-right: 0px;
    padding: 10px;
    height: 76px;
    width: calc(100% - calc(96px + 12px + 20px) * 2);

    border-width: 2px;
    border-radius: 5px;
    border-style: solid;
    border-color: black;

    display: flex;
    flex-direction: column;
    justify-content: center;

    text-align: center;
    left: calc(50% - calc(192px + 4px + 20px) / 2);
}

.iconContainer{
    margin: 10px;
    height: 96px;
    width: 96px;

    border-width: 2px;
    border-radius: 5px;
    border-style: solid;
    border-color: black;

    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}