body {
    /* font-family: Arial, Helvetica, sans-serif; */
    /* font-size: 15px; */
    /* line-height: 1.5; */
    font: 15px/1.5 Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    background-color: #898989;
    
    background-image: url("../img/background.png");
    background-size: contain;
    
    width: 100vw;
}

body, html {
    overflow-x: hidden;
}

#home_quarter {
    align-content: center;
    position: relative;
    
    width: 60vw;
    height: 90vh;
    
    padding-top: 10vh;
}

#showcase {
    align-content: center;
    position: relative;
    
    width: 100vw;
    
    padding-top: 10px;
    
    background-color: #eee;
}

#ss_container {
    justify-content: center;
    
    display: flex;
}

#showcase_sections {
    align-content: center;
    position: relative;
    
    padding-top: 10px;
    
    text-align: center;
    
    background-color: #eee;
}

#tempy_img {
    align-self: center;
    
    width: 10vw;
    height: 10vw;
    
    margin-left: -50vw;
    
    border-radius: 15px;
    
    animation-name: slide_in_i;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

#tempy_img img {
    height: 100%;
}

.text {
    color: #121212;
    font-size: 15px;
    
    text-align: center;
}

.small_text {
    color: #121212;
    font-size: 17px;
    font-style: italic;
    
    text-align: center;
}

.button {
    color: #121212;
    font-size: 15px;
    font-style: bold;
    line-height: 0px;
    
    text-align: center;
    display: inline-table;
    
    height: 8px;
    
    border-style: solid;
    border-width: 2px;
    border-radius: 2px;
    border-color: #121212;
    
    box-shadow: 0 0 10px rgba(0,0,0,.6);
    
    padding-left: 8px;
    padding-right: 8px;
    
    margin: 5px;
    
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.button:hover {
    color: #343434;
    border-radius: 8px;
    border-color: #565656;
}

.section {    
    top: 10px;
    
    width: 100%;
    
    display: inline-table;
    
    background-color: #eee;
}

.item {
    align-items: center;
    justify-content: center;
    display: inline-flex;
        
    width: 350px;
    height: 350px;
    
    border-style: solid;
    border-color: #121212;
    border-radius: 2px;
    
    margin: 5px;
    margin-bottom: 8px;
}

.item img {
    max-width: 300px;
    max-height: 300px;
}

#intro {
    width: 75%;
    
    margin-left: -50vw;
    
    animation-name: slide_in_t;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

#question {
    width: 75%;
    
    margin-left: -50vw;
    
    animation-name: slide_in_t;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

#coffee_display {
    width: 50%;
    
    align-items: center;
    justify-content: center;
    display: inline-flex;
    
    margin-left: -50vw;
    margin-top: -30px;
    margin-bottom: -10px;
    
    animation-name: slide_in_t;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

#coffee_display img {
    padding-left: 8px;
    padding-right: 8px;
    
    cursor: pointer;
    
    transition: all 0.15s ease-in-out;
}

#coffee_display img:hover {
    opacity: 0.7;
    
    transform: translateY(5px);
}

#coffee_display h3 {
    padding-left: 9px;
    padding-right: 9px;
    
    margin-left: 15px;
    
    border-style: solid;
    border-color: #121212;
}

#bar {
    width: 50%; height: 0px;
    
    margin-left: -50vw;
    
    border-width: 1px;
    border-style: solid;
    border-color: #343434;
    background-color: #343434;
    
    animation-name: slide_in_t;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

#fact {
    width: 45%;
    
    margin-left: -50vw;
    
    animation-name: slide_in_t;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

#devide_arrow {
    text-align: center;
    
    width: 100%;
    
    animation-name: slide_in_i;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

#devide_arrow img {
    transition: all 0.25s ease-in-out;
    
    padding: 0px;
}

#devide_arrow img:hover {
    opacity: 0.7;
    
    cursor: pointer;
    
    padding: 10px;
}

#section_select {
    text-align: center;
    
    height: 60px;
    
    border-bottom: 2px;
    border-bottom-style: solid;
    border-bottom-color: #121212;
    
    padding-bottom: 5px;
    margin-top: 20px;
}


@keyframes slide_in_t {
    from {margin-left: -100%; transform: translateX(0%);}
    to {margin-left: 50%; transform: translateX(-50%);}
}

@keyframes slide_in_i {
    from {margin-left: -100%; transform: translateX(0%);}
    to {margin-left: 50%; transform: translateX(-50%);}
}

