/* Basic layout */
body{
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-size: 25vw;
    background-image: url("../images/bg.jpg");
    background-repeat : repeat;

    color: #ffffff;
    text-shadow: -1px -1px 0 #0032ff, 1px -1px 0 #0032ff, -1px 1px 0 #0032ff, 1px 1px 0 #0032ff;

    font-size: 1.2vw;


}



.main_div{

    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    text-align: left;

}
.item_div{
    width: 60rem;
}
.title_div{
    filter: drop-shadow(0 0 0.75rem rgba(251,247,15,1));
    margin-bottom: 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;

    align-items: center;
    align-content: center;

    background-color: gray;
    padding: 1rem 3rem 1rem 3rem;
    border-style: outset;
    border-width: 0.3rem;

}
.title_img{
    filter: drop-shadow(0 0 0.75rem rgba(251,247,15,1));
    width: 20rem;
    margin: 2rem;

}
.links{
    position: relative;
    display: flex;
    gap: 1rem;
}
a{
    color: #ffffff;
    font-size: 2rem;
    text-decoration: none;
}
a:link{
    color: #ffffff;
    font-size: 2rem;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

#container {
    filter: drop-shadow(0 0 0.75rem rgba(251,247,15,1));
    width: 100%;
    display: flex;
    background-color: gray;
    padding: 1rem 3rem 1rem 3rem;

    border-style: outset;
    border-width: 0.3rem;
    text-align: center;
    align-items: center;
    align-content: center;

}

#canvasContainer {
    width: 20rem;
    flex: 1;
    text-align: center;
    height: 20rem;
    margin: 2rem;
}

#optionsContainer {
    margin: 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;

}

.title{
    font-weight: 900;
    font-size: 3rem;
}
/* Style for category and option images */
.category {
    display: flex;
    flex-direction: column;
    gap: 0.6rem
}
.options{
    width: 30rem;
    overflow-x: auto;
    display: flex;
}

.category img {
    cursor: pointer;
    width: 4rem;
    height: 4rem;
    border: 2px solid transparent;
}

.category img.selected {
    border-color: blue;
}
#buttons{
    margin-top: 2rem;
}
#buttons> button{
    color: #fff;

}
button {
    width: 7rem;
    height: 2rem;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow:inset 2px 2px 2px 0 rgba(255,255,255,.5),
    7px 7px 20px 0 rgba(0,0,0,.1),
    4px 4px 5px 0 rgba(0,0,0,.1);
    outline: none;


    background: linear-gradient(0deg, rgba(6,14,131,1) 0%, rgba(12,25,180,1) 100%);
    border: none;
}

 button:hover {
    background: rgb(0,3,255);
    background: linear-gradient(0deg, rgba(0,3,255,1) 0%, rgba(2,126,251,1) 100%);
}