/*
Audio player #2c2c2e
*/

*{
    margin: 0;
    padding:0;
    transition:0.1s;
    -webkit-tap-highlight-color: transparent;
    transition: 0.1s;
}

button
{
    cursor:pointer;
}

body
{
    margin:0;
    padding:0;
    font-family: 'Instrument Sans',sans-serif;
    background-color: white;
    padding:0;
    width:100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    scroll-behavior: smooth;
    padding-bottom:30px;
}

.header
{
    width:100%;
    height:60px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background-color: #0c0c0c;
    top:0;
    position:fixed;
    z-index: 1;
}

.innerheader
{
    width:800px;
    height:100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:20px;
    box-sizing: border-box;
}

.innerheader a
{
    font-size: 25px;
    font-weight: 700;
    font-family: 'Instrument Sans', sans-serif;
    display: flex;
    align-items: center;
    color:white;
    text-decoration: none;
}

.innerheader a span
{
    color:#9124e7;
}

.innerheader a img
{
    width: 20px;
}


.innerheader button
{
    background-color: transparent;
    border:0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.innerheader button img
{
    width:25px;
    filter:invert(1);
}

.innerheader h2 img
{
    width:25px;
    user-select: none;
    pointer-events: none;
}

.innerbox
{
    width:800px;
    box-sizing: border-box;
    padding-top:60px;
}

.text
{
    width: 100%;
    box-sizing: border-box;
    padding:20px;
    padding-top:50px;
    font-size:16px;
    font-weight:500;
}

.text h1
{
    font-size:25px;
}

.text h2
{
    font-size:20px;
    margin-top: 40px;
}

.text p
{
    font-size:16px;
    font-weight:500;
    margin-top: 5px;
}


@media screen and (max-width: 800px) {
    .innerheader {
        width: 100%;
    }
    .innerbox {
      width:100%;
    }
}


