@font-face {
    font-family: Love;
    src: url("/fonts/love.otf") format("opentype");
}

@font-face {
    font-family: NormalLove;
    src: url("/fonts/love_normal.otf") format("opentype");
}

body {
    font-family: NormalLove, serif;

    margin: 0;

    background-color: rgba(173, 216, 230, 0.38);
}

.flex-grid {
    display: flex;
}

.col {
    flex: 1;
}

.col-6 {
    flex: 6;
}

.justify-center {
    display: flex;
    justify-content: center;
}

#page {
    padding-top: 50px;
}

#no {
    border-radius: 50%;
    color:white;
    background-color: #da1648;
    font-size: 80px;
    font-weight: bold;
    text-align: center;
    line-height: 95px
}

#yes {
    border-radius: 50%;
    color:white;
    background-color: forestgreen;
    font-size: 80px;
    font-weight: bold;
    text-align: center;
    line-height: 110px
}