@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    font-family: "Open Sans", sans-serif;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 40px;
}

.header-image {
    width: 100px;
    height: 100px;
    margin-right: 10px;
}

.header-text {
    margin-left: 10px
}

.header-title {
    margin: 0;
    font-weight: 650;
}

.header-subtitle {
    margin: 0;
    font-weight: 500;
    font-size: 23px;
}

.help-text {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
}

.word-boxes-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.word-box {
    width: 50px;
    height: 50px;
    border: 2px solid #D3D6DA;
    margin: 3px;
    font-size: 35px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}

.date-info-text {
    font-size: 14px;
    text-align: center;
}

.selection-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.selection-container[hidden] {
    display: none;
}

.select-button, .back-button {
    border: none;
    outline: none;
    padding: 10px 30px;
    font-weight: 600;
    background-color: #D3D6DA;
    border-radius: 8px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}

.select-button:hover, .back-button:hover {
    background-color: #bec2c7;
}

.alt-date-options {
    font-size: 12px;
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.alt-date-options[hidden] {
    display: none;
}

.alt-date-label {
    margin-left: 5px;
}

.sarcastic-text {
    font-size: 12px;
    font-weight: 600;
}

.alt-date-options-selected {
    text-align: center;
}

#year-select {
    width: 100px;

}

.date-chosen-text {
    font-size: 25px;
    font-weight: 500;
}

.date-chosen-container {
    text-align: center;
}

.darker-border {
    border-color: #000;
    /* border-width: 1px; */
}

.green-word-box {
    border-color: #6aaa64;
    background-color: #6aaa64;
    color: #fff
}

#footer {
    position: absolute;
    height: 50px;
    bottom: 50px;
    width: 100%;
}

#footer > p {
    text-align: center;
}

.kaami-link, .badux-link {
    font-weight: 600;
    color: #000;
    text-decoration: none;
    font-size: 18px;
}

.small-text-footer {
    font-size: 10px;
    color: #000
}