* { 
    padding-top: 0.5vw;
    padding-bottom: 0.5vw;
    box-sizing: border-box;
}
body {
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    font-family: Arial, sans-serif;
    background-color: rgb(31, 31, 31);
    color: white;
    min-height: 100vh;
}
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas: 
    'menu'
    'content'
    'image'
    'sources'
    'footer'
    ;
}
.grid div {
    margin: 5px;
}
h1 {
    grid-column: 1 / span 10;
    margin-bottom: 0px;
}
h2 {
    grid-column: 1 / span 10;
}
.menu {
    grid-column: 1 / span 10;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.content {
    grid-column: 2 / span 4;
}
.image {
    grid-column: 6 / span 4;
}
img {
    max-width: 100%;
}
.sources {
    grid-column: 2 / span 9;
    text-align: left;
}
.sources a {
    margin: 0px;
    border: 0px;
    padding: 2px;
    border-radius: 1px;
    background-color: rgb(31, 31, 31);
    color: white;
}
.footer {
    grid-column: 1 / span 10;
    border: 1px solid black;
    background-color: rgb(48, 48, 48);
}
a {
    margin: 10px;
    background-color: rgb(194, 194, 194);
    padding: 5px;
    border-radius: 3px;
    flex-basis: 250px;
    text-decoration: none;
    color: black;
}
a:hover {
    background-color: rgb(124, 124, 124);
}
@media (orientation: portrait) {
    .content {grid-column: 1 / span 10;}
    .image {grid-column: 1 / span 10;}
}
#faq {
    grid-column: 1 / span 10;
}
#omoss {
    grid-column: 1 / span 10;
}