:root{
    --PRIMARY: var(--TEAL);
    --SECONDARY: var(--CERULEAN);
    --ACCENT: var(--LIME);
}
main {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#twitter_feed {
    margin: 10px 20px;
    min-width: 275px;
    max-height: 500px;
    overflow-y: scroll;
    flex-shrink: 1;
}

#image-container{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 600px;
    margin: 5px 20px;
    flex-shrink: 1;
    background-color: #f8fefe;
    z-index: 1;
}
  
#image-container > img {
    max-width: 100%;
    max-height: 600px;
}

.top-left, .bottom-right, .bottom-left{
    position: absolute;
    display: flex;
    flex-direction: column;
}
.top-left{
    top: 0;
    left: 0;
    width: 40%;
    height: 50%;
}
.top-left > div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-left > div > a{
    margin-left: 5px;
}
.top-left > div > a, .top-left > div > a > button{
    width: 100%;
}
.top-left .icon-button{
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-left .icon-button > p{
    margin-left: 5px
}
.bottom-right{
    bottom: 0;
    right: 0;
    height: 55%;
    /* width: 40%;  */
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-evenly;
}

.bottom-right > div{
    display: flex;
    flex-direction: column;
}
.three-stacked {
    margin-right: 5px;
}
.three-stacked > a{
    width: 100%;
}
.three-stacked > div {
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.three-stacked > div > a{
    width: 55px;
    margin-right: 5px;
}
.three-stacked > div > a:last-of-type{
    margin-right: 0;
}
.three-stacked > div > a > button{
    width: 100%;
    max-width: 100px;
}
.bottom-right > div > a {
    width: 100%;
}
.bottom-right > div > a > button {
    width: 100%;
    max-width: 200px;
}
.button-container button{
    border: 1px solid var(--PRIMARY);
    background-color: var(--SECONDARY);
    color: #fff;
    box-shadow: none;
    border-radius: 4px;
    padding: 5px;
    min-width: 50px;
    min-height: 30px;
    margin: 2px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}
.button-container button:hover{
    border: 1px solid var(--ACCENT);
    background-color: var(--PRIMARY);
}
.button-container a{
    text-decoration: none;
}
.chart-button{
    position: absolute;
    left: 5%;
    bottom: 40%;
}
.default-button{
    border: 1px solid var(--PRIMARY);
    background-color: var(--SECONDARY);
    color: #fff;
    box-shadow: none;
    border-radius: 4px;
    padding: 5px;
    min-width: 50px;
    min-height: 30px;
    margin: 2px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}
.default-button:hover{
    border: 1px solid var(--ACCENT);
    background-color: var(--PRIMARY);
}
@media only screen and (max-width: 900px) {
    .top-left .icon-button > p{
        display: none;
    }
}
@media only screen and (max-width: 1080px) {
    main {
        flex-wrap: wrap;
    }
    #twitter_feed {
        margin: 10px 20px;
        width: 60vw;
        max-height: 400px;
    }
}
