* {
    font-family: 'Roboto', sans-serif;
    background-color: #131313;
    color: white;
    overflow: hidden;
    width: auto;
    margin: 0;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

html, body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

svg {
    display: inline-block;
    vertical-align: middle;
}

h1, p, img{
    background-color: #00000000;
}

h1 {
    text-align: center;
}

.version {
    position: absolute; 
    bottom: 16px; 
    left: 16px;
}

.disclaimer {
    position: absolute; 
    bottom: 16px; 
    right: 16px;
}

#links {
    background-color: #252525;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
    border-width: 2px;
    border-style: solid;
    border-color: #424242;
    align-items: stretch;
    justify-self: center;
}

.linkElement {
    background-color: #252525;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
    border-width: 2px;
    border-style: solid;
    border-color: #424242;
    min-width: 256px;

    transition: 0.1s ease-in-out;
}

.linkElement:hover {
    background-color: #424242;
}

.dropdown {
    background-color: #252525;
    padding: 8px;
    border-radius: 8px;
    border-width: 2px;
    border-style: solid;
    border-color: #424242;
}

.dropdownToggle {
    padding: 8px;
}

.dropdownMenu {
    background-color: #252525;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: 0.1s ease-in-out;
}