#hoved {
    height: 300px;
    display: grid;
    gap: 10px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
    background-color: white;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
}

#hoved h2
{
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
}

#hoved p
{
    padding-left: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: small;
}

#hoved img
{
    border: 1px solid black;
}

#hoved > div {
    width: 300px;
    height: 400px;
    background-color: whitesmoke;
    border: 2px solid black;
    padding-bottom: 50px;
}