
/* word of the day link */
#wodBtn {
    padding-left: 70px;
}

/* modal */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #c2b5c7;
    width: 40%;
    text-align: center;
}

/* styling the close out button */
.close {
    color: #c2b5c7;
    float: right;
    font-size: 28px;
    font-weight: bold;
    text-align: right;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    opacity: 1;
    color: #b605fc;
    text-decoration: none;
    cursor: pointer;
}
/* END modal */

/* apply header styles */
header {
    background-color: #c2b5c7;
    color: #f5f5f5;


}

header h2 {
    text-shadow: 0 0 10px #fccccc;
}

header div {   
    text-align: left;
    /* padding-left: 10px; */
}

header div a {
    text-shadow: 0 0 10px #fccccc;
    text-decoration: none;
    color: #f5f5f5;
}

/* mouse over link */
a:hover {
    text-decoration: none;
    color: #f5f5f5;
    font-family: Impact, Charcoal, sans-serif;
}
/*end header styles */

#search-con{
    padding-top: 20px;
}
#history-con{
    padding-top: 20px;
}

.card {
    background-color: hsl(0, 0%, 100%);
    border-radius: 5px;
    border-width: 1px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px 0px;
    color: hsl(287, 15%, 36%);
    font-size: 18px;
    padding: 10px 10px; 
    height: 400px;   
}

form input {
    background-color: hsl(0, 0%, 100%);
    border-radius: 5px;
    border-width: 1px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px 0px;
    color: hsl(287, 15%, 36%);
}

.flex-column {
    justify-content: center;
    padding: 20px 20px;
}

#title-container {
    justify-content: center;
}

#word-search {
    justify-content: space-around;
    padding: 10px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
}

#history {
    padding: 10px 20px;
    width: 250px
}

#history-search {
    margin-right: 0px;
    display: block;
}


/* MEDIA QUERY FOR TABLETS AND SMALLER */

@media screen and (max-width: 780px) {
    .card {
        margin-left: unset; 
        width: 350px;
        padding: 20px;
    } 
} 


/* MEDIA QUERY FOR MOBILE PHONES AND SMALLER */

@media screen and (max-width: 680 px) {
   

} 