body {
    background-color: black;
    background-image: url("key.png");
    color:turquoise;
    font-family: monospace;
}

header{
    text-align: center;
    background-color: #101010;
}

header span{
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
}

main{
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    text-align: center;
    padding: 10px;
}

#tv {
    border-width:2px;
    border-style: solid;
    border-color: turquoise;
}

.show {
    display: flex;
    align-items: center;
    padding:10px;
    flex-wrap: wrap;
}

.show div{
    margin:10px;
    min-width: 200px;
    flex-basis: 450px;
}

.show img{
    border-radius: 50%;
}

.show:nth-of-type(even){
    background-color: #2d2d2d;
}

.show:nth-of-type(odd){
    background-color: #101010;
}