body {
    margin: 0px;
    padding: 0px;
    background-color: hsl(0, 0%, 5%);
    font-family: Inder;
}

#Dice-Holder {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    color: hsl(0, 0%, 95%);
}

#Title {
    color: hsl(0, 0%, 95%);
    font-size: 5rem;
    margin: 0px;
}

#Dice {
    background-color: hsl(0, 0%, 15%);
    border: 5px solid hsl(0, 0%, 10%);
    border-radius: 10px;
    width: 20%;
    height: 300px;
    color: hsl(0, 0%, 95%);
    font-size: 14rem;
    text-align: center;
    font-weight: bold;
}

#Button {
    background-color: hsl(0, 0%, 10%);
    box-shadow: 0px 0px 10px hsl(0, 0%, 15%);
    width: 16%;
    padding: 5px;
    color: hsl(0, 0%, 95%);
    font-size: 3.5rem;
    font-weight: bold;
    border: 5px solid hsl(0, 0%, 15%);
    border-radius: 10px;
    margin-top: 1%;
    transition: all 0.5s;
}

#Button:hover {
    background-color: hsl(0, 0%, 15%);
    box-shadow: 0px 0px 10px hsl(0, 0%, 20%);
}

@media screen and (max-width: 480px) {
body {
    margin: 0px;
    padding: 0px;
    background-color: hsl(0, 0%, 5%);
    font-family: Inder;
}

#Dice-Holder {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    gap: 3%;
}

#Title {
    color: hsl(0, 0%, 95%);
    font-size: 6rem;
    margin: 0px;
}

#Dice {
    background-color: hsl(0, 0%, 15%);
    border: 5px solid hsl(0, 0%, 10%);
    border-radius: 10px;
    width: 70%;
    height: 350px;
    color: hsl(0, 0%, 95%);
    font-size: 15rem;
    text-align: center;
    font-weight: bold;
}

#Button {
    background-color: hsl(0, 0%, 10%);
    box-shadow: 0px 0px 10px hsl(0, 0%, 15%);
    width: 60%;
    height: auto;
    padding: 10px;
    color: hsl(0, 0%, 95%);
    font-size: 3.5rem;
    font-weight: bold;
    border: 5px solid hsl(0, 0%, 15%);
    border-radius: 10px;
    transition: all 0.5s;
}

#Button:hover {
    background-color: hsl(0, 0%, 15%);
    box-shadow: 0px 0px 10px hsl(0, 0%, 20%);
}

    
}
