body {
    background: #101010;
    overflow: hidden;
}
*:focus {
    outline: none;
}
button {
    border: 1px solid white;
    padding: 1em;
    background: transparent;
    color: white;
    width: 100%;
    margin: 1.5em 0;
    cursor: pointer;
    width: 50%;
}
button.goodbye {
    width: 100%;
}
.buttons {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.buttons button {
    margin-right: 10px;
}
.delay {
    opacity: 0;
    transition: opacity 0.5s;
}
.delay.active {
    opacity: 1;
}
p {
    color: white;
}
.content {
    position: relative;
    height: 100vh;
    width: 100%;
    max-width: 100%;
}
.section {
    max-width: 400px;
    max-height: 400px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: black;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    z-index: -1;
}
.section.active {
    opacity: 1;
    z-index: 1;
}
.section#one {
    text-align: center;
}
.section#one input {
    background: #f8f8f8;
    border: 0;
    padding: 1.4em;
    width: 70%;
}
