body,html {
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
    
}

.background {
    background-image: url('../static/images/background.png'),linear-gradient(135deg,rgb(14, 83, 88), rgb(229, 176, 161));
    background-attachment: fixed;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(1.5px);
}

h1 {
    padding-top: 20px;
    text-align: center;
    color: white;
}

.seperate {
    height: 0px;
    border: none;
    margin: 10px;
    border-top: 3px solid rgb(62, 59, 59);
}

hr {
    border: 8px solid white;
    padding: 0;
    margin: 0;
}

.grid {
    color: white;
    width: 40px;height: 40px;
    text-align: center;
    border: 1px solid black;
    border-color: rgb(173, 122, 26);
    float: left;
    background-color: rgb(44, 40, 40);

}

.grid:focus {
    outline: none;
}

.right {
    border-right: 4px solid black;
    border-color: rgb(173, 122, 26);
    width: 44px;
}
 
.bottom {
    border-bottom: 4px solid black;
    border-color: rgb(173, 122, 26);
    height: 44px;
}
  

.box {
    border: 4px solid black;
    width: fit-content;
    display: inline-block;
    border-radius: 10px;
    border-color: rgb(173, 122, 26);

}

.top-left-corner {
    border-top-left-radius: 4px;
}

.bottom-left-corner {
    border-bottom-left-radius: 4px;
}

.top-right-corner {
    border-top-right-radius: 4px;
}

.bottom-right-corner {
    border-bottom-right-radius: 4px;
}
.pad {
    padding-top: 10px;
    padding-bottom: 40px;
}

.button{
    text-align: center;
    font-size: large;
}

#generate {
    color: rgb(213, 208, 208);
    margin-right: 30px;
    text-align: center;
    border: 2px solid rgb(44, 40, 40);
    background-color: rgb(44, 40, 40);
    border-radius: 6px;

}

#generate:active {
    border-color: rgb(173, 122, 26);
}

#reset {
    color: rgb(213, 208, 208);
    padding-right: 14px;
    padding-left: 14px;
    text-align: center;
    border: 2px solid rgb(44, 40, 40);
    background-color: rgb(44, 40, 40);
    border-radius: 6px;

}

#reset:active {
    border-color: rgb(173, 122, 26);
}

#solve:active {
    border-color: rgb(173, 122, 26);
}
#solve {
    color: rgb(213, 208, 208);
    margin-left: 30px;
    padding-right: 14px;
    padding-left: 14px;
    border: 2px solid rgb(44, 40, 40);
    text-align: center;
    background-color: rgb(44, 40, 40);
    border-radius: 6px;

}

#message {
    color: rgba(255,0,0);
    padding-left: 5px;
    padding-right: 5px;
    width: fit-content;
    margin: 20px;
}

h6 {
    margin: 0 10px;
    width: fit-content;
    padding: 7px;
    padding-left: 15px;
    padding-right: 15px;
    color: rgb(255, 255, 255);
    border: 3px solid rgb(44, 40, 40);
    border-radius: 20px;
}


@media only screen and (max-width: 400px) {
    .grid {
        width: 10vw;height: 10vw;
    }

    .right {
        border-right: 1vw solid black;
        border-color: rgb(173, 122, 26);
        width: 11vw;
    }
     
    .bottom {
        border-bottom: 1vw solid black;
        border-color: rgb(173, 122, 26);
        height: 11vw;
    }

}

.credits {
    padding: 1rem;
    text-align: center;
    color:white;
}

.links {
    text-align: center;
}

#twitter:hover {
    border: 2px solid rgba(255, 255, 255, 0.585);
    border-radius: 100%;
}

#github:hover {
    border: 2px solid rgba(255, 255, 255, 0.585);
    border-radius: 100%;
}
