* {
    padding: 0;
    margin: 0;
    font-family:'Times New Roman', Times, serif;
    font-size: 110%;
}

a {
    color: black;
}

h3 {
    font-size: xx-large;
}

p {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 90%;
}

em, strong {
    font-size: 1em;
}

::-moz-selection {
    color: white;
    background: #3b768f;
}

::selection {
    color: white;
    background: #3b768f;
}

header {
    background: #f1f1f1;
    /*padding: 20px;*/
    border-bottom: #3b768f 6px solid;
    position: fixed;
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
}

.heading {
    font-size: 140%;
    margin-bottom: 0;
    padding: 10px;
    flex: 5;
    text-decoration: none;
    font-weight: bolder;
}

.navigation {
    text-align: right;
    margin-right: 40px;
    flex: 1;
    text-decoration: solid;
}

.navigation:hover {
    text-decoration: underline;
}

section {
    min-height: 100vh;
    border-bottom: #111111 1px solid;
    display: flex;
    flex-direction: column;
    padding: 100px;
    align-items: center;
    text-align: center;
}

.title-section {

    justify-content: space-evenly;
    background: linear-gradient(
        rgba(0, 0, 0, 0.4), 
        rgba(0, 0, 0, 0.4)
      ), url("img/iceberg.jpg") fixed;
    background-size: 100%;
    color: white;
}

h1 {
    font-size: 500%;
    margin-bottom: 20px;
}

.start-wordle {
    width: 25%;
    height: 50px;
    background: #3b768f;
    border: 0;
    font-weight: bold;
    font-size: 110%;
    color: white;
    border-radius: 10px;
}

.start-wordle:hover {
    background: #55aace;
}

.start-wordle:active {
    background: #55aace;
    border: #ffffff solid 1px;
}

.wordle-row {
    display: flex;
    font-size: x-large;
    margin: 10px;
    align-self: center;
    margin: 0;
}

.wordle-letter{
    border: 1px solid grey;
    background: none;
    width: 50px;
    height: 50px;
    border-radius: 0px;
    text-align: center;
    line-height: 50px;
    padding: 10px;
    margin: 5px;
}

.wrong {
    background-color: orangered;
    color: white;
    padding: 10px;
}

.exist {
    background-color: goldenrod;
    color: white;
    padding: 10px;
}

.right {
    background-color: #3b768f;
    color: white;
    padding: 10px;
}

.articles {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
}

article {
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
}

.even {
    background: #f1f1f1;
}

.today {
    border: 2px solid #3b768f;
}

.footer {
    background-color: #f1f1f1;
    border-top: #3b768f 2px solid;
    padding: 20px;
    color:gray;
    position:sticky;
    font-size: 75%;
}

form {
    width: 40%;
}

input, textarea {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

textarea {
    height: 100px;
}

.submit {
    height: 50px;
    background: #3b768f;
    border: 0;
    font-weight: bold;
    font-size: 110%;
    color: white;
    border-radius: 10px;
}

.submit:hover {
    background: #55aace;
}

.submit:active {
    background: #55aace;
    border: #ffffff solid 1px;
}

.citation {
    color: gray;
}

.non-selectable {
    -webkit-user-select: none;  
    -moz-user-select: none;    
    -ms-user-select: none;      
    user-select: none;
}