Main.css 859 Bytes
html, body {
    width: 100vw;
    height: 100vh;
}

body {
    margin: 0;
}

.MainPageContainer {
    background: url("Landing.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin: 0;
    width: 100vw;
    height: 100vh;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.ImagePreviewContainer{
    display: inline-block;
    background: lightgrey;
    border-radius: 15px;
}

.ImagePreview{
    width: 300px;
    height: 400px;
    background-color: #efefef;
    border-radius: 15px;
}

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

.Checkbox {
    padding: 1rem;
}

h3{
    color: white;
    padding: 1rem;
}

.Caution{
    color: pink;
}