* {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    background-color: #ccc;
    overflow: hidden;
}

.title {
    padding:12px;
    font-size:21pt;
}

p {
    padding: 12px;
    font-size: 18pt;
}

.topBar {
    background-color:#cc3333;
    width: 100vw;
    height: 12vw;
    font-size:48pt;
    text-align: center;
    padding-top:2vh;
    color:#fff;
    font-family: "AppleGothic", serif;
}

.mainContainer {
    font-size: 12pt;
    background: #fff;
    border-radius: 12px;
    margin: 2vw;
    overflow: hidden;
}

.setupButton {
    font-family: "AppleGothic", serif;
    font-size:48pt;
    padding-top: 1vh;
    padding-bottom:1vh;
    color:#fff;
    text-align: center;
    border-radius: 32px;
    background-color: #cc3333;
    width: 90vw;
    height: 6vw;
    position: fixed;
    bottom: 2vh;
    left:5vw;
    right: 5vw;
    margin-bottom:1vh;
}

#loader {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#msg-loader {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-loader {
    width:100px;
    height:100px;
    border-radius:50%;
    border:16px solid;
    border-color:#E4E4ED;
    border-right-color: #cc3333;
    animation:s2 1s infinite linear;
}
@keyframes s2 {to{transform: rotate(1turn)}}

.message {
    padding: 6px;
    border: 1px solid black;
    margin-left: 2vw;
    margin-right: 2vw;
    margin-bottom:2vh;
}

.message h2 {
    font-size: 32px;

}