#buttons-wrapper {
    position: relative;
    justify-content: center;
    top: 100px;
    width: fit-content;
    height: fit-content;
    user-select: none;
}

.button {
    width: 200px;
    height: 50px;
    border-width: 2px;
    border-color: white;
    background-color: black;
    margin: 5px;
    border-radius: 7px;
}

.button-text {
    color: white;
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.button:hover {
    border-style: outset;
    border-width: 5px;
    border-style: dotted;
}
