@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:wght@400;700&display=swap');

:root {
    --primary-color: #ffb86a;
    --secondary-color:  #df4c4a;
}

body {
    margin: 0;
    margin-bottom: 3rem;
    font-family: 'Ubuntu Mono', monospace;
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

#banner {
    margin: auto;
    width: 60vw;
    text-align: center;
    height: 100vh;
}

#heading {
    padding-top: 2vh;
    padding-bottom: 2vh;
    font-size: 3rem;
    font-weight: 700;
}

#hero-img {
    max-height: 60vh;
    max-width: 60vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5vh;
}

#main-link {
    display: block;
    max-width: 40vw;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    text-decoration: none;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem;
    border-radius: 1rem;
    font-size: 2rem;
    font-weight: 550;
    cursor: pointer;
    /* box-shadow: -2px 3px 8px 2px var(--secondary-color); */
}

#main-app {
    margin: auto;
    width: 60vw;
    text-align: center;
    background-color: white;
    padding: 2rem;
    border-radius: 2rem;
}

.form-style {
    display: flex;
    flex-direction: column;
}

.label-style {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    /* padding-bottom: 1rem; */
}

.input-style {
    display: block;
    margin: auto;
    width: 55%;
    padding: 0.3125rem 0.3125rem;
    background-color: #e4cece;
    border: 2px solid transparent;
    border-radius: 5px;
    outline: none;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: start;
    cursor: pointer;
    font-family: inherit;
}

.check-style {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 1rem;
    margin-top: 1rem;
    padding: 1rem;
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 600;
    width: 40vw;
    cursor: pointer;
    min-width: 25%;
    align-self: center;
}

.img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    max-width: 50vw;
}

.result-style {
    font-size: 1.5rem;
    font-weight: 700;
}