* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: rgb(7, 7, 7);
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    display: none;
}

.image {
    border: 3px solid gray;
}

.btns {
    display: flex;
    column-gap: 20px;
    justify-content: center;
    align-items: center;
}

.btns .offBtn {
    width: 200px;
    height: 80px;
    border: 3px solid #bdbdbd;
    border-radius: 100px;
    box-shadow: 0 0 10px white;
    background: #e90000;
    font-size: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.btns .offBtn:hover {
    background: #d00000;
}

.btns .openBtn {
    width: 200px;
    height: 80px;
    border: 3px solid #bdbdbd;
    border-radius: 100px;
    box-shadow: 0 0 10px white;
    background: #0fc90f;
    font-size: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.btns .openBtn:hover {
    background: #0dab0d;
}