@import url('https://fonts.googleapis.com/css?family=Abel');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --font-family: Abel, Arial, Verdana, sans-serif;
}

body {
    background-color: #242424;
    font-size: 18px;
    font-family: var(--font-family);
    color: white;
}

h1 {
    text-align: center;
    margin: 25px 0 25px 0;
}

header {
    padding: 10px 0 10px 0;
    margin: 0 0 40px 0;
}

#sliders-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#result-container {
    text-align: center;
    margin: 20px 0 0 0;
}

#error {
    color: red;
    text-align: center;
    margin-bottom: 25px;
}

#logos {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 200px;
    margin: 0 40px 0 40px;
}

.gauge-container {
    margin: 10px 40px 10px 40px;
}

.slider {
    writing-mode: bt-lr;
    -webkit-appearance: slider-vertical;
    height: 200px;
    width: 20px;
    padding: 0;
    
}

.smiley {
    width: 30px;
}

.icon {
    width: 80px;
}

.gauge {
    height: 200px;
}

.icon-label {
    margin: 15px 0 15px 0;
    text-transform: uppercase;
}