﻿body {
    padding: 50px 0 0 0;
    margin: 150px 0 0 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: rgb(15, 12, 18);
    position: relative;
}

#menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: rgb(31, 26, 35);

    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 5px;
}

#menu > h1{
    color: rgb(220, 220, 220);
    font-size: 60px;
    font-family: 'Cambria Math';
    text-transform: uppercase;
    text-shadow: 0 0 2px;
    font-weight: normal;
    letter-spacing: 3px;
}

#imagebars {
    padding-left: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
}

.topic {
    background-color: rgb(31, 26, 35);
    border-radius: 20px;
    box-shadow: 0 0 10px;



    margin: 0 0 50px 0;
    width: initial;
    height: 80px;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.topic > span{
    color: rgb(30, 30, 30);
    font-family: 'Source Code Pro';
    text-transform: uppercase;
    font-weight: bold;
    font-size: 30px;

    border-radius: 20px 0 0 20px;

    background: rgb(255,132,0);
    background: linear-gradient(200deg, rgba(255,132,0,1) 0%, rgba(255,102,0,1) 100%);

    width: 200px;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.topic > a{
    margin: 0 30px 0 30px;
}

.topic > a > img{
    height: 50px;
}

#ddgSearch {
    margin-top: 50px;
    display: flex;
}

#ddgSearch > input{
    width: 500px;
    height: 50px;
    outline: none;
    padding: 0 0 0 25px;
    background-color: rgb(31, 26, 35);
    border: none;
    border-radius: 25px;
    box-shadow: 0 0 10px black;
    color: rgb(220, 220, 220);
    font-size: 15px;
}

#ddgSearch > button {
    padding: 0;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: none;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
}

#ddgSearch > button > img {
    width: 50px;
    height: 50px;
}

#chart {
    position: absolute;
    right: 100px;
    background-color: rgb(31, 26, 35);
    padding: 20px;
    border-radius: 20px;
}

* {
    user-select: none;
    -moz-user-select: none;
}
