html, body {
    user-select: none;
    -webkit-user-select: none;
    -webkit-font-smoothing: antialiased;
}

html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img, b, ul, li, form, label,
table, caption, article, aside, canvas, footer, header, nav, output, section {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

    vertical-align: baseline;
    outline: none;
    text-decoration: none;
    color: inherit;
}

@media screen and (min-width: 100px) and (max-width: 999px) {
    .title {
        top: 20vw;
        font-size: 12vw;
    }


    .button {
        width: 55vw;
        height: 55vw;
        bottom: 22vw;
    }

    .button-border {
        border-width: 2vw;
        width: 55vw;
        height: 55vw;
        bottom: 20vw;
    }

    .button-text {
        font-size: 5.5vw;
    }
}

@media screen and (min-width: 1000px) and (max-width: 5000px) {
    .title {
        top: 10vw;
        font-size: 6vw;
    }

    .button {
        width: 10vw;
        height: 10vw;
        bottom: 5vw;
    }

    .button-border {
        border-width: 0.5vw;
        width: 10vw;
        height: 10vw;
        bottom: 4.5vw;
    }

    .button-text {
        font-size: 1vw;
    }
}


#content {
    width: 100%;
    height: 100vh;
}

.content {
    color: #d7d7d7;
}


.background {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title {
    text-align: center;
    font-weight: bold;
    position: absolute;
    left: 0;
    right: 0;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    background-color: #393939;
}

.button-border {
    border-style: solid;
    border-color: orange;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

.button-text {
    font-weight: bold;
}

.button-active {
    box-shadow: none;
    background-color: #2f2f2f;
    color: #a0a0a0;
}

.button-text-active {
    transform: scale(0.95);
}