html, body{
    margin: 0;
    padding: 0;
    margin-bottom: 20px;

    font-family: Arial, Helvetica, sans-serif;
}

body{
    background: url('/res/img/background.jpg');
    background-size: cover;
    background-position: center bottom;
}

a{
    color: #662382;
    text-decoration: none;
}

.contentbox{
    width: 90%;
    max-width: 900px;
    margin: auto;
    margin-top: 20px;
    border-radius: 16px;

    padding: 20px;
    box-sizing: border-box;

    background-color: white;

    text-align: center;
}
.contentbox.largepadding{
    padding: 20px;
    padding-left: 60px;
    padding-right: 60px;
}

.head{
    height: 50px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.head img{
    height: 90%;
}

.head .menu{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.head .menu a{
    font-size: 1.2rem;
    padding: 12px;

    color: #662382;
    text-decoration: none;
}

.head .menu a:hover{
    background-color: #662382;
    color: white;

    border-radius: 16px;
}

.head .menu a.active{
    background-color: #662382;
    color: white;

    border-radius: 16px;
}

@media only screen and (max-width: 690px) {
    .head{
        height: 120px;
        flex-direction: column;
    }
    .head img{
        height: 40px;
    }
    .head .menu a{
        font-size: 1rem;
        padding: 6px;
    }
    .contentbox.largepadding{
        padding: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}


h1{
    font-size: 2.6rem;
    font-weight: 400;
}
h2{
    font-size: 1.3rem;
    font-weight: 400;
}
h3{
    font-size: 1.6rem;
    font-weight: 400;

    color: #662382;
}
p{
    font-size: 1.3rem;
    font-weight: 400;
}

.inputfield{
    font-size: 2rem;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;

    width: 100px;

    margin-bottom: 40px;

    border-radius: 16px;
    border: 1px solid #b9b9b9;
    outline: none;
}

#playerui{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    margin-bottom: 60px;
}
.playerbutton{
    font-size: 2rem;
    padding: 8px;
    border-radius: 50%;

    background-color: #662382;
    color: white;
    cursor: pointer;
}
.playerbutton:hover{
    background-color: #381447;
}

.volumecontainer{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    margin-left: 24px;
}
.volumecontainer i{
    font-size: 2rem;
    color: #662382;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;  
    background: #d3d3d3;
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
}
  
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%; 
    background: #662382;
    cursor: pointer;
}
  
.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #662382;
    cursor: pointer;
}

#contactform .inputfield{
    font-size: 1.2rem;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;

    width: 80%;

    margin-bottom: 16px;
    padding: 8px;
    padding-left: 12px;

    box-sizing: border-box;
}

.submitbutton{
    font-size: 1.2rem;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;

    background: #662382;
    border: 0;
    color: white;
    border-radius: 16px;

    width: 80%;

    margin-bottom: 16px;
    padding: 8px;

    cursor: pointer;
}
.submitbutton:hover{
    background: #49195e;
}

.msgresult{
    font-size: 4rem;
    color: #662382;
}