*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: fixed;
}

canvas {
    display: block;
}

.control-wrapper {
    position: fixed;
    height: 83px;
    left: 50%;
    bottom: 5%;
    margin: 0 auto;
    transition: all 1s ease;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
}

.button-wrapper {
    display: flex;
    flex-direction: row;
}

a {
    height: 45px;
    display: block;
    padding: 10px 20px;
    margin: 0;
    margin-top: auto;
    margin-bottom: auto;
    color: #FFFFFF;
    font-size: 20px;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    letter-spacing: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    
    border: 1px solid #00c1ed;
}

a:hover {
    background: #db23c3;
    color: #050801;
    border: 1px solid #db23c3;
    box-shadow: 0 0 5px #db23c3,
                0 0 25px #db23c3,
                0 0 50px #db23c3,
                0 0 200px #db23c3;
}

#play {
    background: #00c1ed;
    margin-left: auto;
    margin-right: auto;
}

#play:hover {
    background: #db23c3;
}

#pause {
    color: #00c1ed;
}

#pause:hover {
    color: #050801;
}

#skip {
    color: #00c1ed;
    margin-left: 20px;
}

#skip:hover {
    color: #050801;
}

#text-wrapper {
    display: flex;
    flex-direction: column;
    width: 370px;
    height: 83px;
}

#title {
    height: 30px;
    font-size: 20px;
    font-weight: 500;
}

#author {
    font-size: 16px;
    font-weight: 200;
}

.description-text {
    width: auto;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    letter-spacing: 4px;
    font-family: 'Roboto', sans-serif;
    color: #00c1ed;
}

.hide {
    display: none !important;
}

#logo {
    width: 60%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    overflow: hidden;
    transform: translate(-50%,-50%);
    text-align: center;
    opacity: 1;
    transition: all 1s ease;
}

.logo-small {
    width: 10% !important; 
    position: absolute;
    top: 65px !important;
    left: 6% !important;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #000000;
}
