/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&family=Montserrat:wght@800&family=Roboto+Mono:wght@500&display=swap');

/* STYLE */
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto Mono', monospace;
}

footer{
    margin: 0;
    border: 0;
    padding: 5px; 
    background-color: rgb(36, 36, 36); 
    width: 100%; 
    height: auto;
}
.stores{
    margin: 5px; 
    background-color: rgba(255, 0, 0, 0); 
    display: flex; 
    flex-flow: row wrap; 
    align-items: center; 
    justify-content: center;
}
.stores .store-boxes{
    background-color: rgba(128, 128, 128, 0); 
    width: auto; 
    height: auto; 
}
.stores .store-boxes img{
    width: 250px;
}
#Unity{
    background-color: rgba(0, 0, 0, 0); 
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    justify-content: center;
    align-items: center;
}
#Unity h1{
    margin: 2%;
    font-family: 'Josefin Sans', sans-serif;
    color: grey;
    font-size: 2vw !important;
}
#Unity svg{
    height: 4vw;
}
.copyright{
    margin: 1%;
    border: 0;
    padding: 0;
    background-color: rgba(142, 182, 155, 0);
    display: flex;
    flex-flow: row wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.copyright img{
    margin: 1%;
    border: 0;
    padding: 0;
    width: 100px;
}
.copyright p{
    margin: 1%;
    border: 0;
    padding: 0;
    color:aliceblue;
    font-size: 16px !important;
}

.links{
    margin: 5px; 
    padding: 5px; 
    background-color: rgba(255, 123, 0, 0); 
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-evenly;
    align-items: flex-start;
}
.links .linkbox{
    margin: 0;
    padding: 0;
    border: 0;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
    font-family: 'Roboto Mono' !important;
}
.links .linkbox a,button{
    background-color: transparent;
    color: aliceblue;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
}
.links .linkbox a:hover,button:hover{
    color: rgba(240, 248, 255, 0.486);
}

a{
    text-decoration: none !important;
    color: rgb(197, 197, 197);
}


