body {
    background-color: #202222;
}

#navbar{
    height: 70px;
    width: 100%;
    background-color: #a52121;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    box-shadow: #000 0px 0px 10px;
}

#container{
    width: 80%;
    margin: 0 auto;
    height: 100%;
    position: relative;
    text-align: center;
}

@media screen and (max-width: 600px) {
    #container{
        width: 100%;
        margin: 0 auto;
        height: 100%;
        position: relative;
        text-align: center;
    }
}

#container span{
    padding:10px;
}

#container .thumbnail{
    border-radius: 10px;
    margin-top: 15px;
    transition: transform 0.2s ease-in-out;
    box-shadow: #000 0px 0px 10px;
    overflow: hidden;
}

#container .thumbnail:hover, #container .thumbnail:focus{
    transform: scale(1.2);
    border: #a52121 5px solid;
    outline: none;
}

@media screen and (max-width: 600px) {
    #container .thumbnail{
        width: 40%;
    }
}

button {
    background-color: #a52121;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 10px;
    box-shadow: #000 0px 0px 10px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

button:hover, button:focus{
    transform: scale(1.1);
    outline: none;
}

#changeType{
    margin-top: 20px;
    margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
    #logo {
            width: 80%;
        }
}

#logo {
    width: 300px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#count{
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    margin-top: 20px;
}