#button {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
width: 85vw;
justify-content: center;
}

.content {
width: 10vw;
background-color: #212121;
margin: 5px;
border-radius: 10px;
display: flex;
flex-direction: column;
align-items: center;
padding: 5px 3px;
}
.content:hover {
    cursor: pointer;
}

.content > img {
width: 40%;
}

.content > .title {
    text-align: center
}

body {
    margin: 0;
    background-color: #434343;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#confirmation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100vw;
}
#confirmation > .confirm-content {
    width: 20vw;
    min-height: 9vh;
    background-color: #212121;
    margin: 5px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 3px 16px 3px;
    justify-content: space-between;
}
#confirmation > .confirm-content > .buttons > .cancel {
    border-radius: 10px;
    border-style: none;
    border-width: 0px;
    background-color: #8d1818;
    font-weight: bold;
}
#confirmation > .confirm-content > .buttons > .confirm {
    border-radius: 10px;
    border-style: none;
    border-width: 0px;
    background-color: #1ea71e;
    font-weight: bold;
}

.confirm:hover, .cancel:hover {
    cursor: pointer;
}

html {
  scroll-behavior: smooth;
}