html,body {
    padding: 0;
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.page {
    width: 100vw;
    height: 100vh;
    background-image: url(img/soundboard-bg.jpg);
    background-size: cover;
    background-position: center center;
}

.page__title {
    width: 50vw;
    margin: 25vh 25vw 120px;
}

.page__sounds {
    width: 50vw;
    margin: 0 auto;
    text-align: center;
}

.button {
    cursor: pointer;
    display: inline-block;
    padding: 15px 30px;
    margin: 0 15px 30px;
    border-radius: 50px;
    background: linear-gradient(to bottom, #c949e2, #9d2ab4);
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
    box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.5);
}

.button:hover {
    background: linear-gradient(to bottom, #ac36c4, #821c96);
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.8);
}
