body {
    background-color: red;
}

.omikuji {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
}

#result {
    font-size: 30px;
    border: 1px solid black;
    border-radius: 10px;
    background-color: #fff;
    width: 200px;
    height: 100px;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

button {
    background: #ff701e;
    border: 2px solid #ff701e;
    border-radius: 60px;
    color: #fff;
    display: block;
    font-weight: bold;
    max-width: 300px;
    padding: 15px 40px;
    margin-top: 10px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 0 #d01a0a;
    transition: .1s cubic-bezier(0.45, 0, 0.55, 1);
}

button:hover {
    transform: translateY(4px);
    box-shadow: none;
}

.omikujicomment {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
    border: 1px solid black;
    border-radius: 10px;
    background-color: #fff;
    height: 100px;
    margin-left: 20%;
    margin-right: 20%;
}

.message {
    display: block;
}

.daikichi, .chuukichi, .shoukichi, .kyou {
    display: none;
}

.message.active {
    display: none;
}

.daikichi.active, .chuukichi.active, .shoukichi.active, .kyou.active {
    display: block;
}