html {
    margin: 0;
    font-family: Roboto;
    background-color: rgb(247, 241, 241);
}

body {
    margin: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
}

header {
    max-height: 100px;
    padding: 5px;
}

header p {
    margin: 0;
    display: inline-block;
    font-size: 60px;
}

img {
    max-width: 100px;
}

main {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

h1 {
    text-align: center;
    font-size: 100px;
}

form {
    margin: auto;
    width: auto;
    height: auto;
    font-size: 2.5em;
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: top;
}

a {
    margin: 0;
    text-align: end;
    font-size: 0.4em;
    color: #000000;
}

.column1 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: end;
}

.column2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.column2 input {
    padding: 0;
    margin: 0;
    height: 44px;
    width: 350px;
    align-self: center;
}

.submit {
    font-size: 1.3rem;
    height: 50px;
    align-self: center;
}

.warning {
    background-color: #000000de;
    color: #e03434;
    max-width: 500px;
    height: 220px;
    font-size: 3em;
    position: fixed;
    right: 50%;
    bottom: 45%;
    transform: translate(50%, -50%);
    text-align: center;
    align-content: center;
    justify-content: center;
    display: none;
}