body {
    min-height: 100vh;
    background-color: #c8c8c8;
}

/* Favorites Tile */

#favorites-title {
    text-align: center;
}

#recent-results {
    text-align: center;
    padding: 10px 0 10px 0;
}

#recent-results button {
    width: 90%;
    margin:  5px 0 5px 0;

}

#recent-results button:hover{
    background-color: #48c774;
    color: white;
}

/* Homepage Styling */

#homepage {
    display: flex;
    flex-direction: column;
    flex-basis: 60%;
}

#user-select {
    text-align: center;
    padding-top: 50px;
}

#buttons {
    display: flex;
    justify-content: center;
    padding: 20px;;
}

.button {
    margin: 0 10px 0 10px;
}

.generated-API {
    text-align: center;
}

.dropdown-content {
    text-align: left;
}

#subtitle-styling {
    margin-top: 0;
}

/* Generated API Page */

#renderedAPI, #homepage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#form-styling {
    display: flex;
    align-items: center;
}

#button-styling {
    text-align: center;
}

.center-content {
    text-align: center;
}

#button-center-content, #invalid-msg-styling {
    justify-content: center;
}

/* Responsive */

@media screen and (max-width: 768px) {
    
    .column-stack {
        display: flex;
        flex-direction: column-reverse;
    
    }

    #recent-results button {
        font-size: 18px;
        padding: 2px 30px;
        border-radius: 5px;
    }
}


