body {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    background-color: rgb(0, 183, 255);
}

*{
    color: white;
    font-weight: 900;
    text-shadow: 1px 1px black;
    font-family: sans-serif;
    border-radius: 10px;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 600px;
    height: 600px;
    padding: 10px;
    min-width: 240px;
}

.items {
    font-size: 25px;
    padding: 10px;
    text-align: center;
    width: 80%;
    margin: 15px 0px;
}

#chances {
    display: flex;
    justify-content: space-between;
    width: 95%;
}

#chance-text {
    width: 220px;
    text-align: center;
    font-weight: 900;
}

#color-pallete {
    display: flex;
}

.colors {
    margin: 0px 10px;
    width: 50px;
    outline: 2px solid white;
    outline-offset: 3px;
    border-radius: 0px;
}

#color1 {
    background-color: #ff0000;
}

#color2 {
    background-color: #ffa500;
}

#color3 {
    background-color: #ffff00;
}

#color4 {
    background-color: #dfff00;
}

#color5 {
    background-color: #00ff00;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#message {
    visibility: hidden;
}

#check {
    border: none;
    background-color: rgb(0, 130, 251);
    font-weight: 900;
    width: 200px;
    color: white;
    box-shadow: 6px 6px rgb(0, 82, 224);
    position: relative;
    top:0px;
    left:0px;
    transition: 0.1s all;
}

#check:hover {
    background-color: rgb(27, 106, 254);
}

#check:active{
    box-shadow: none;
    top: 6px;
    left: 6px;
}

#input {
    text-shadow: 1px 1px black;
    border: none;
    outline: none;
    background-color: rgb(128, 219, 255)    ;
    font-weight: 900;
    font-size: 33px;
    color: white;
    box-shadow: 6px 6px rgb(0, 144, 227);
}

#instructions{
    font-weight: 900;
    width: 90%;
    margin-bottom: 0px;
}
@media (max-width:620px){
    #chances{
        flex-direction: column;
        align-items: center;
    }
    .chance-content{
        margin: 10px;
    }
}
@media (max-width: 380px){
    .colors{
        width: 35px;
    }
}   
@media (max-width:300px){
    .colors{
        width: 30px;
    }
}