* {
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.app {
    background-color: black;
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 100;
    color: #fff;

}

.app__container {
    margin-left: auto;
    margin-right: auto;
    background-color: black;
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 100;
    color: #fff;
    display: flex;
    padding: 30px;
    max-width: 900px;
}

button {
    border: initial;
    background-color: initial;
    color: inherit;
    font: inherit;
    outline: none;
}

ul {
    list-style: none;
}

a {
    color: #ffe100;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .app {
        width: 100%;
        margin: 0;
    }
}

.header {
    background-image: linear-gradient(to left, #484c49, #212121);
    height: 55px;
    display: flex;
    position: sticky;
    top: 0;
}

.dd-toggle {
    color: rgba(252, 219, 10, 0.79);
    padding: 0 13px;
    cursor: pointer;
    transition: all 0.5s;
}

.dd-toggle:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.07);
}

.dd-toggle:focus {
    color: white;
    background-color: rgba(255, 255, 255, 0.07);
}


.text-white {
    font-size: 20px;
    color: #fff;
    font-weight: 100;
}

.heading-white {
    font-size: 30px;
    color: #fff;
    font-weight: 200;
}

.heading-green {
    font-size: 25px;
    color: #22eb07;
    font-weight: 200;
}

.heading-green-c {
    font-size: 25px;
    color: #22eb07;
    font-weight: 200;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.heading-gold {
    font-size: 25px;
    color: #d3bb00;
    font-weight: 200;
}


.main {
    flex: 1;
}

img {
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

footer {
    text-align: center;
    padding: 5px;
    background-color: #abbaba;
    color: #000;
    font-size: 12px;
    font-weight: 100;
  }