/* #06283D
#1363DF
#47B5FF
#DFF6FF
*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #05293fe8;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#logo {
    color: #47B5FF;
}

#logo span {
    color: #1363DF;
}

#logo, #logo span {
    font-weight: bold;
    margin-top: 25px;

    text-align: center;
}

#title {
    color: #DFF6FF;
    text-align: center;
    margin: 15px 0;
}

#bg-container {
    background-color: #1052b673;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 1000px;
    height: 765px;
    border-radius: 35px;
}

#container {
    background-color: #06283d62;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

    width: 900px;
    height: 610px;

    border-radius: 35px;
}

.button {
    background-color: #DFF6FF;
    color: #06283D;

    border: none;
    border-radius: 45px;
    font-size: 20px;
    font-weight: bold;

    width: 250px;
    height: 80px;
}

.button:hover {
    background-color: #47B5FF;
    cursor: pointer;

    transition: ease-in-out 0.3s;
}
/*
Remove scroll bars on Chrome
*/
#container::-webkit-scrollbar,
 #bg-container::-webkit-scrollbar,
 #categories-container::-webkit-scrollbar {
    display: none;
  }


@media screen and (max-width: 500px) {
    #bg-container {
        width: 300px;
        height: 600px;
    }

    #container {
        width: 250px;
        height: 500px;
    }

    .button {
        width: 160px;
        height: 45px;
    }
}