:root {
    --background: #000147;
    --boxBackground: #F7F1DF;
    --highlight: #FF5500;
    --highlightDark: #D14600;
    --boxText: #00001A;
    --pageText: #FF793C;
    --shadow: #FF5500;
    --logoDark: 
}




html {
    background-color: var(--background);
    font-size: larger;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--pageText);
}
a {
    color: var(--pageText);
    text-decoration: none;
}
img {
    object-fit: cover;
}
.search {
    display: grid;
    grid-template-columns: auto 1fr;
    border: none;
    padding: 1px;
    border-radius: 100px;
    width: 60px;
    height: 60px;
    overflow: hidden;
    align-items: center;
    transition: all 400ms ease-in-out;
}
.searchbutton {
    margin-right: 30px;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: transparent;
    border: var(--highlight) 2px solid;
}
.searchinput {
    background-color: transparent;
    height: 37px;
    border: none;
    border-radius: 100px;
    min-width: 467px;
    max-width: 800;
    outline: none;
    font-size: larger;
}
.search:focus-within {
    width: 33vw;
    margin-left: 20px;
    .searchbutton {
        margin-right: 10px;
    }
}
.searchbutton:hover {
    border: none;
    background-color: var(--highlight);
}
.searchbutton:active {
    background-color: var(--highlightDark);
}
.table {
    display: grid;
    grid-template-rows: auto;
}
.box {
    margin: 20px;
    display: flex;
    border-radius: 20px;
    font-size: larger;
    font-weight: 600;
    color: var(--boxText);
    background-color: var(--boxBackground);
}
.menubar {
    object-fit: cover;
    border-radius: 55px;
    color: var(--text);
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: large;
    display: grid;
    grid-template-columns: auto repeat(3, 1fr) auto;
    justify-items: center;
    align-items: center;
    text-decoration: none;
}
.logo {
    max-height: 50px;
    margin-left: 12px;
    justify-self: left;
    float: left;
    margin: 4px;
}
.titlebox {
    color: var(--text);
    padding: 13px;
    align-items: flex-start;
    a {
        text-decoration: none;
    }
}
.description {
    max-width: 50vw;
}
.game {
    margin: 20px;
    width: 250px;
    height: 370px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
.gamebox {
    display: flex;
    flex-wrap: wrap;
}
.shadowed {
    box-shadow: 5px 5px 10px var(--shadow);
    border: var(--shadow) .01px solid;
}
.sample {
    width: 300px;
    height: 140px;
    padding: 0px;
    margin: 0px;
}
.gamecaption {
    font-size: small;
    font-weight: 400;
    justify-content: center;
    padding: 3px;
}
.gametitle {
    margin: 3px;
}
.gamebutton {
    background-color: #A9A9B1;
    border-radius: 20px;
    border: none;
    padding: 5px;
    border-radius: 5px;
    content: flex;
    margin-top: 10px;
    margin-bottom: 1px;
    overflow: hidden;
    margin-left: 20px;
    margin-right: 20px;
}
.gamebutton:active {
    padding: 6px;
    margin-top: 9px;
    margin-bottom: 0px;
    margin-left: 19px;
    margin-right: 19px;
}
.likebutton:hover {
    background-color: #00FF00;
}
.likebutton:active {
    background-color: #00D100;
}
.playbutton:hover {
    background-color: red;
}
.playbutton:active {
    background-color: #D10000;
}
.getbutton:hover {
    background-color: blue;
}
.getbutton:active{
    background-color: #0000D1;
}