* {
    box-sizing: border-box;
}

html, body {
    background-color: #18181A;
    
    height: 100%;
    /* Seite soll über volle Höhe gehen */
    min-width: 350px;
    min-height: 550px;
}

/* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */

@media (max-width: 800px) {
    .flex-content {
        flex-direction: column;
        padding: 0px;
        justify-content: center;
    }
    .main {
        border-bottom: solid;
        border-width: thin;
        border-color: #c0c0c0;
    }
    html, body {
        overflow: hidden !important;
        margin: 0;
        padding: 0;
    }
    .chat {
        height: 100%;
    }
    .title {
        padding-top: 5px;
    }
}

.flex-content {
    display: flex;
    clear: left;
}

.main {
    
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}


/* HEADER */

.header {
    display: flex;
}

.logo {
    margin-top: 6px;
    margin-right: 5px;
    margin-left: 10px;
    flex: 0, 0, 10em;
}

.title {
    flex: 1;
}

.impressum {
    margin-top: 15px;
    margin-right: 10px;
    flex: 0, 0, 15em
}

h1 {
    margin: 5px;
    font-family: 'Archivo Black', sans-serif;
    color: white;
}

h3 {
    font-family: 'Archivo', sans-serif;
    color: white;
}

.round {
    background-color: green;
    position: relative;
    width: 55px;
    height: 55px;
    text-align: center;
    border-radius: 100px;
}

.pic {
    margin-top: 8px;
    margin-bottom: 8px;
    margin-left: 10px;
    float: left;
}

.avdr {
    float: left;
    padding-left: 10px;
    margin-top: 8px;
}

.social-media {
    padding-top: 18px;
    padding-right: 15px;
}

.insta {
    float: right;
    margin-left: 20px;
}

.spotify {
    float: right;
    margin-left: 20px;
}

.soundcloud {
    float: right;
    margin-left: 20px;
}

/* CSS for Chat*/

@media (min-width: 800px) {
    .chat {
        flex: 0 0 25em;
        position: relative;
    }
}

.chat-header {
    margin-top: 10px;
    text-align: center;
    font-family: Helvetica, sans-serif;
    color: white;
}

.input {
    font-family: Helvetica, sans-serif;
    position: absolute;
    bottom: 0;
    left: 0;
    margin-bottom: 5px;
    padding: 10px;
    display: flex;
    width: 100%;
}

.input-text {
    flex: 1;
}

.input-button {
    flex: 0 0 3em;
    margin-top: 6px;
    margin-left: 8px;
}

button {
    font-weight: bold;
    height: 30px;
    border-radius: 5px;
    border-color: white;
    border-width: thin;
    width: 100%;
}

.message {
    background-color: #606060;
    border-radius: 5px;
    height: 40px;
    border-color: #606060;
    color: white;
    opacity: 1;
    padding-left: 10px;
    width: 100%;
}

::placeholder {
    color: white;
    opacity: 0.5;
}