@import url('https://fonts.googleapis.com/css2?family=Quicksand');

.button {
    font-family: 'Quicksand', sans-serif;
    padding: 10px;
    border: none;
    background: white;
    transition: 0.4s;
    color: black;
    border-radius: 5px;
    margin: 5px;
    outline: none;
    font-size: 15px;
    text-align: center;
}

.button:hover {
    font-family: 'Quicksand', sans-serif;
    background: gray;
    transform: scale(1.15);
    transition: 0.4s;
}

h1 {
    color: white;
}
  
p {
    font-size: 17px;
}

a {
    color: rgb(15, 80, 215);
    text-decoration: none;
}
  
html, body {
    font-family: 'Quicksand', sans-serif;
    background-color: #141414;
    margin: 0;
}

header {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #DCDCDC;
    padding: 5px;
    margin: 10px;
    margin-top: 0px;
    position: sticky;
    top: 0;
    box-shadow: 0px 0px 10px rgb(0, 0, 0);
}

.header-logo {
    width: 200px;
}
  
.events {
    border-radius: 10px;
    background: rgb(225, 145, 55);
    padding: 5px;
    margin: 10px;
    border: 1px solid black;
    box-shadow: 0px 0px 10px rgb(0, 0, 0);
    text-align: center;
    color: rgb(255, 255, 255);
}

.container {
    border-radius: 10px;
    background-color: #242424;
    width: 45%;
    margin: auto;
    margin-top: 25px;
    margin-bottom: 25px;
    padding: 10px;
    text-align: center;
    color: white;
    border: 1px solid black;
    box-shadow: 0px 0px 10px rgb(0, 0, 0);
}
  
.avatar {
    border-radius: 50%;
    border: 1px solid black;
}

.soon {
    font-size: 20px;
    color: red;
}
  
.profile {
    border-radius: 20%;
    border: 1px solid black;
}
  
.Game-Icon {
    border-radius: 5%;
    border: 1px solid black;
}
    
.shop {
    border: 1px solid black;
}
    
.input{
    border: 1px solid black;
    padding: 12px 12px;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
}

.scroll-container {
    background-image: url('/assets/images/checkers.png');
    border: 1px solid rgb(0, 0, 0);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: auto;
    white-space: nowrap;
    padding: 10px;
    margin-top: 25px;
    margin-bottom: 25px;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgb(10, 10, 10);
}

::-webkit-scrollbar-thumb {
    background: rgb(30, 30, 30);
    border-radius: 50px;
}

@media screen and (max-width: 700px) {
    .container {
        width: 100%;
        border-radius: 0;
        padding: 0;
    }
    
    header {
        border-radius: 0;
        margin: 0;
    }
}