



@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap');

html, body{
    height: 100%;
    overflow: hidden;
}

body{
    background-color: black;
}

h1, h2, h3, p, a{
    color: white;
    font-family: "Playfair Display", serif;
}

p{
    font-size: 20px;
}

.page-container{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-title{
    display: flex;
    align-items: center;
    justify-content: center;
}

#form-label{
    display: flex;
    align-items: center;
    justify-content: center;
}

#form-content{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

#text-field{
    /* height: 20vh; */
    width: 50vw;
    font-family: inherit;
    font-size: 20px;
    color: white;
    background-color: transparent;
    border: 2px solid white;
    outline: none;
    text-align: center;
}

#form-button{
    background-color: white;
    cursor: pointer;
}

#form-button * {
    font-weight: 800;
    color: black;
}