body {
    font-family: Verdana;
    background-color: rgb(15, 15, 15);
}

nav {
    background-color: rgb(88, 87, 87);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 0rem calc((100vw - 1300px) / 2);
}

nav a {
    padding: 0 1rem;
    text-decoration: none;
    color: white;
    transition: color 0.45s;
}

nav a:hover {
    color: rgb(56, 55, 55);
}

.dropdown {
    display: inline-block;
    color: white;
}

.Dropdown-Label {
    cursor: pointer;
    transition: color 0.45s;
}

.Dropdown-Label:hover {
   color: rgb(56, 55, 55);
}

.dropdown a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
}

.dropdown a:hover {
    color: rgb(56, 55, 55);
}

.dropdown:hover .content {
    display: block;
}

.content {
    display: none;
    position: absolute;
    background-color: rgb(0, 0, 0);
    min-width: 100px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content a {
    color:  rgb(255, 255, 255);
}

.content a:hover {
    color:  rgb(56, 55, 55);
}

.More-Label {
    color: white;
    cursor: pointer;
    transition: color 0.45s;
}

.More-Label:hover {
   color: rgb(56, 55, 55);
}

.dropdown-more {
    display: inline-block;
    padding: 0 1.1rem;
    color: white;
    text-decoration: none;
}

.dropdown-more:hover .content-More {
    display: block;
}

.content-More {
    display: none;
    position: absolute;
    background-color: rgb(0, 0, 0);
    min-width: 100px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-More a {
    display: inline-block;
    color:  rgb(255, 255, 255);
    padding: 10px 15px;
}

.content-More a:hover {
    color:  rgb(56, 55, 55);
}

.Logo {
    color: white;
    font-size: 1.5rem;
    padding: 0 2rem;
    font-weight: bold;
}

.Div-Roll {
    display: grid;
    align-content: center;
    justify-content: center;
    height: 100vh;
}

.Roll-Elements {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
}

.Roll-Label {
    font-size: 80px;
    color: white;
}

.Min-Value {
    border-radius: 15px;
    border: none;
    height: 3vh;
    margin-bottom: 14px;
    text-align: center;
    font-size: 17px;
}

.Roll-Input {
    border-radius: 15px;
    border: none;
    height: 3vh;
    margin-bottom: 14px;
    text-align: center;
    font-size: 17px;
}

.Roll-Button {
    height: 40px;
    font-size: 17px;
    color: white;
    background-color: hsl(0, 1%, 22%);
    border-radius: 18px;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s, color 0.25s;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
    width: 150px;
}

.Roll-Button:hover {
    background-color: hsl(0, 0%, 100%);
    color: black;
}