main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70vh;
    font-family: "Bevellier", sans-serif;
}

h1 {
    padding-bottom: 20px;
    color: #AF03FF;
    font-size: 40px;
    font-family: "Bevellier", sans-serif;
    font-weight: 500;
}

section {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.answer{
    display: flex;
    margin-left: 20px;
    width: 50vw;
    flex-direction: column;
}

.webcam-container {
    width: 640px;
    height: 480px;
    position: relative;
}

.result {
    margin-top: 20px;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;

    font-size: 20px;
    font-family: "Bevellier", sans-serif;
    font-weight: 300;
}

.button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: max-content;

    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 40px;
    padding-right: 40px;
    border: 4px solid #FFD503;
    background-color: #FFD503;
    border-radius: 8px;

    font-size: 20px;
    font-family: "Bevellier", sans-serif;
    font-weight: 500;
    text-decoration: none;
    color: black;
}

#display-pic {
    display: none;
}

.link {    
    position: fixed;
    right: 20px;
    bottom: 20px;
    
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: max-content;

    padding: 8px;
    border: 4px solid #AF03FF;
    background-color: #AF03FF;
    border-radius: 8px;

    font-size: 20px;
    font-family: "Bevellier", sans-serif;
    font-weight: 500;
    text-decoration: none;
    color: #FFD503;
}