#heroDiv {
    background-image: url("tab_background.jpg");
    /* x-axis repeat; y-axis repeat; */
    background-repeat: repeat-x repeat-y;
    background-size: 50%;
    height: 700px;
    position: relative;
    width: 100%;
    color: white;
    z-index: -999;
}

#overlayGradient {
    /* 45 deg gradient; */
    background: rgb(2, 0, 36);
    background: linear-gradient(33deg, rgba(2, 0, 36, 1) 0%, rgba(4, 4, 62, 0.864) 76%);
    height: 700px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -998;
}

#guitarCanvasDiv {
    position: absolute;
    bottom: 30px;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

#guitarCanvas {
    background-color: transparent;
    display: block;
}

body {
    background-color: #F0E9EB;
    font-family: "minion-pro", serif;
    font-weight: 400;
    font-style: normal;
    padding: 0;
    margin: 0;
    color: #323232;
}

p {
    padding: 0;
    margin: 0;
}

.table td,
.table th {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.676);
}

#title {
    font-size: 8rem;
}

#subtitle {
    font-size: 2rem;
}

.intro {
    font-size: 1rem;
}

@media screen and (max-width: 820px) {
    .datasetBtn {
        margin-top: 16px;
    }
    #heroDiv {
        height: 700px;
    }
    #overlayGradient {
        height: 700px;
    }
    #guitarCanvasDiv {
        bottom: 20px;
        height: 80px;
    }
}

@media screen and (max-width: 480px) {
    .datasetBtn {
        margin-top: 16px;
    }
    #heroDiv {
        height: 600px;
    }
    #overlayGradient {
        height: 600px;
    }
    #guitarCanvasDiv {
        bottom: 20px;
        height: 80px;
    }
    #title {
        font-size: 5rem;
    }
    #subtitle {
        font-size: 1rem;
    }
    .intro {
        font-size: 0.6rem;
    }
}

.container {
    padding-top: 30px;
    padding-bottom: 30px;
}

.email {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.7rem;
    font-weight: 400;
}

.container {
    padding-top: 30px;
    padding-bottom: 30px;
}

.add-content {
    background-color: #fbf8f8;
    padding: 20px;
    text-align: center;
}

.text {
    max-width: 800px;
}