button {
    background-color: #404464;
    border: 4px solid;

    border-bottom-color: #202232;
    border-right-color: #202232;
    border-top-color: #5F6695;
    border-left-color: #5F6695;
    border-radius: 4px;
    color: #F3F3F7;

    font-family: "Sour Gummy", sans-serif;
}

button:hover {
    background-color: #383B57;

    border-bottom-color: #181925;
    border-right-color: #181925;
    border-top-color: #585D89;
    border-left-color: #585D89;
}

button:active {
    border-bottom-color: #585D89;
    border-right-color: #585D89;
    border-top-color: #181925;
    border-left-color: #181925;
}

ul {
    list-style: none;
}

.box {
    display: grid;
    justify-content: center;
    margin: 20px;
    padding: 20px;
    gap: 16px;

    border: 10px solid #404464;
    border-radius: 10px;
    justify-self: center;
    width: 50vw;
    background-color: #DADBE7;
}