html {
    height: 100%;
}

body {
    height: 100%;

    font-family: 'Ubuntu', sans-serif !important;
    margin: 0;
    padding: 0;
}

.container {
    min-height: 100%;
    height: auto;
}

#logo {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    
    transition: transform 0.3s ease-in-out;
}

#logo:hover {
    transform: scale(1.1);
}

.c-w {
    color: white;
}

.c-b {
    color: #63442C;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

a {
    text-decoration: none;
    color: black;
}

p {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

.headline {
    font-size: 40px;
    text-transform: uppercase;
}

.sub-headline {
    font-size: 34px;
    text-transform: uppercase;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

#text-box-intro {
    margin-right: 150px;
}

#birth-calculator {
    display: flex;
    align-items: center;

    height: inherit;
    width: 50%;
    background-color: white;
}

#birth-calculator #inner-container {
    margin-left: 100px;
}

#img-container {
    width: 50%;
    height: inherit;
    background-image: url('./background.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

label {
    font-size: 16px;
}

.input-field {
    display:flex;
    max-width: 500px;
    width: 100%;
}

#birth-calculator input[type="date"], input[type="number"] {
    position: relative;
    width: 100%;
    height: 30px;

    border: none;
    outline: none;

    padding: 8px;

    background-color: #f1ddce;
}

input::-webkit-calendar-picker-indicator{
    display: none;
}

/*#birth-calculator input[type="date"]::before {
    content: "";
    position: absolute;

    width: 100%;
    height: 30px;

    border: none;
    outline: none;

    padding: 8px;
}*/

#submit-btn-calculator, #back-button {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    border: none;
    outline: none;
    color: black;
    background-color: #f1ddce;
    cursor: pointer;

    padding: 15px 20px 15px 20px;

    transition: transform 0.3s ease-in-out;
}

#back-button {
    font-size: 14px;
    font-weight: 600;

    padding: 8px 12px 8px 12px;
}

#submit-btn-calculator:hover, #back-button:hover {
    transform: translateX(10px);
}

#result {
    font-size: 24px;
}

#contact-anchor-link {
    font-size: 16px;
    text-decoration: underline;
}

.hide {
    display: none;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    width: 100%;
    height: 25px;
    background-color: white;

    padding: 20px 0 20px 0;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

@media screen and (max-width: 1300px) {
    html {
        height: unset;
    }
    .headline {
        font-size: 30px;
    }
    .sub-headline {
        font-size: 24px;
    }
    p {
        font-size: 16px;
    }
    .container {
        flex-direction: column-reverse;
    }
    #birth-calculator {
        width: 100%;
        height: 100%;

        justify-content: center;
        align-items: center;
    }
    #inner-container {
        display: flex;
        flex-direction: column;
        
        margin: 0 50px 0 50px !important;
    }
    #birth-calculator input[type="date"], input[type="number"] {
        width: unset;
    }
    #img-container {
        position: relative;
        height: 200px;
        width: 100%;
    }
    #logo {
        position: absolute;
        width: 150px;
        height: auto;
    }
    #text-box-intro {
        margin-right: unset;
    }
}