html, body {
    height: 100%;
    width: 100%;
}
body {
    margin: 0;
    padding: 0;
    background-color: black;
    overflow-x: hidden;
}
* {
    font-family: 'Poppins', sans-serif;
}
main {
    width: 100%;
    height: 100%;
    position: relative;
}
.standard-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.double {
    height: 150%;
}
.square {
    width: 100px;
    height: 100px;
    background-color: #730818;
    position: absolute;
    border: 2px solid #3E0C18;
}
.connor-container h1:last-child {
    text-align: center;
}

.connor-container h1:first-child {
    text-align: center;
}
.connor-container h1 {
    font-size: 22vw;
    position: relative;
    z-index: 100000;
    margin: 0;
    line-height: 1;
    width: 100%;
    text-align: center;
    color: black;
}
.connor-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    color: black;
    width: 100%;
}
.rainDrop {
    width: 10px;
    height: 10px;
    background-color: lightblue;
    position: absolute;
}
.flip {
    transform: rotateX(360deg);
}
#target {
    position: absolute;
    width: 100%;
    height: 100%;
}
.standard-container.absolute {
    z-index: 10;
}
.absolute {
    position: absolute;
}
.double {
    top: 50%;
}
#rainTarget .square {
    background-image: url(../img/connor_transparent_compressed.png);
    background-size: cover;
    width: 150px;
    height: 150px;
    border-radius: 50%;
}
.fire {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 729px;
    opacity: .6;
}
button.spare-connor {
    position: relative;
    font-size: 50px;
    padding: 30px 50px;
    border-radius: 36px;
    background-color: rgba(0,0,0, .6);
    color: #730818;
    border: 12px solid #730818;
    z-index: 200;
    font-weight: bold;
}
.spare-connor-container {
    bottom: 24%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    position: absolute;
    width: 100%;
    text-align: center;
    transition: .5s;
}
button.spare-connor.active {
    background-color: #730818;
    color: white;
}
button:focus {
    outline: none;
}
.spare-connor-container h2 {
    color: #730818;
    font-size: 50px;
}