body {
    background: #F2F2F2;
}

header {
    font-size: 20px;
    background-color: #DFDFDF;
    height: 80px;
    border: 2px solid #B5B7BA;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

header div {
}

header a {
    padding: 20px;
    font-family: Roboto;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    color: #000000;  
}

h1 {
    padding: 2px;
    text-align: center;
}

h2 {
    text-align: right;
}

main {
}

main a {
}

.content {
    display: flex;
    /*     height: 65vh; */
    flex-wrap: wrap;
    flex-direction: row;
}
 
.content p {
    padding: 5px;
    width: 300px;

    flex-grow: 1;
}

.content img {
    padding: 20px;
    width: 250px;
    border-radius: 15%;
    transition: all 0.5s; 
 }
 
 .content img:hover {
    transform: scale(1.6);
    border-radius: 0%;
    opacity: 90%;
 }

.game {
    padding: 20px
}
footer {
    background-color: #434445;
    display: block;
    /* position: absolute;
    bottom: 5px; 
    margin-bottom: auto;
    padding-top: 1rem; */
    width: 100%;
    height: 40px;
    text-align: center;
    color: #a4a4a4;
    font-size: 20px;
    font-weight: 100;
    line-height: 40px;
}

/* .mt-auto,
.my-auto {
  margin-top: auto !important;
}
.pt-3,
.py-3 {
  padding-top: 1rem !important;
}
 */


