*{
    font-family: Century;
    margin: 0;
    padding: 0;
}
body {
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.5),rgba(0,0,0,0.25)) , url("bg.png");
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: repeat-y;
    min-height: 200px;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10vh;
}
.container > :last-child {
    margin-bottom: 20px;
}
.title{
    text-align: center;
    margin-bottom: 50px;
    display: inline-block;
}
.title h1{
    color: #fff;
    font-size:70px;
}
.title p{
    color: #fff;
    font-size:30px;
}
#disclaimer{
    color: #fff;
    font-size:25px;
    margin-bottom: 50px;
}
.par{
    text-align: center;
    margin-bottom: 3vh;
    display: inline-block;
}
.par h1{
    color: #fff;
    font-size:40px;
    margin-bottom: 10px;
}
.par p{
    color: #fff;
    font-size: 20px;
}
#note{
    text-align: left;
    width:60%;
    margin: 0 auto;
    line-height: 1.8;
    background-color: rgba(0, 0, 0,0.8);
    padding: 15px;
}
.ma{
    text-align: center;
    display: inline-block;
}
.ma h2{
    color: #fff;
    font-size:40px;
}
.ma h1{
    color: #fff;
    font-size:55px;
}
.button{
    margin:30px;
    display: inline-block;
}
.btn{
    border: 2px solid #fff;
    padding: 10px 25px;
    color: #fff;
    transition: 0.5 ease;
    font-size: 24px;
    text-decoration: none;
}
#yes:hover{
    background-color: #86dba4;
    color:#000;
}
#no:hover{
    background-color: #bf5858;
    color:#000;
}