body {
    margin: 0;
    width: 100vw;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background-color: #ffeaf1;
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

svg {
    width: 1000px;
    height: 1000px;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

h1 {
    font-family: "Comfortaa", sans-serif;
    font-weight: bolder;
    font-size: 3rem;
}

button {
    padding: 10px 20px;
    border: none;
    color: white;
    text-transform: uppercase;
    margin: 0 10px 10px 0;
    cursor: pointer;
    letter-spacing: 1px;
    font-size: 2rem;
    font-family: "Comfortaa", sans-serif;
    border-radius: 4px;
    transition: all 0.25s ease;
}
button#btn-happy {
    background-color: #eb584d;
}
button#btn-happy:hover {
    background-color: #e62d1f;
}
button#btn-cool {
    background-color: #007185;
}
button#btn-cool:hover {
    background-color: #004652;
}
button#btn-sexy {
    display: none;
}
button#btn-crazy {
    background-color: #883277;
}
button#btn-crazy:hover {
    background-color: #632456;
}

button:last-child {
    margin-right: 0;
}

button:focus {
    outline: none;
    border: 0;
}
