@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tektur:wght@400..900&display=swap');

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

html,
body,
#wrapper {
    height: 100%;
    width: 100%;
    font-family: 'Kanit', sans-serif;
    color: #333;
}

#wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../public/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tool-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.tool {
    flex: 0.5;
    background-color: rgba(255, 255, 255, 0.25);
    border: 1px solid #ddd;
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
}

.tool summary {
    text-align: center;
}

.tool-btn {
    width: 100%;
    padding: 5px 10px;
    margin: 10px 0px;
    border: none;
    border-radius: 5px;
}

#have-common {
    border-color: gray;
    padding: 3px;
    border-radius: 5px;
}
#have-uncommon {
    border-color: green;
    padding: 3px;
    border-radius: 5px;
}
#have-rare {
    border-color: blue;
    padding: 3px;
    border-radius: 5px;
}
#have-epic {
    border-color: purple;
    padding: 3px;
    border-radius: 5px;
}
#have-legendary {
    border-color: gold;
    padding: 3px;
    border-radius: 5px;
}