:root{
    --color-grey-light-1:#faf9f9;
    --color-grey-light-2:#f4f2f2;
    --color-grey-light-3:#f0eeee;
    --color-grey-light-4:#ccc;
    --color-grey-dark-1:#333;
    --color-grey-dark-2:#777;
    --color-grey-dark-3:#999;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}

body{
    font-family:'Open Sans', sans-serif;
    font-weight:200;
    line-height:1.6;
    text-align: center;
    color:var(--color-grey-dark-1);
    background-color: rgb(92, 195, 255)

   
}
/* body {
font-family: sans-serif;
line-height: 1.4;

background-color: rgb(92, 195, 255);
color: black;} */

#thePitch {
    font: size 40px;;
    padding:1rem;
    background-color: #FAF9F6;
    border: 1px solid black;
    width: 90%;
    margin: 50px auto;
    position: relative;
}

#pageHeader {
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
    background-color: #FAF9F6;
    padding: 20px;
    grid-column: 1 / -1;
}
.btnContainer{
    width: 100%;
}


#girlButton {
    background-color: pink;
    border: 1px solid black;
    left: 2%;
}
#boyButton {
    background-color: rgb(92, 195, 255);
    border: 1px solid black;
    right: 2%;
}

/* #girlButton {
    right: 35%;
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 1px;
    padding: 13px 50px 13px;
    outline: 0;
    border: 1px solid black;
    cursor: pointer;
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
}


#girlButton::after {
    content: "";
    background-color: pink;
    width: 100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    top: 7px;
    left: 7px;
    transition: 0.2s;
}

#girlButton:active::after {
    top: 0px;
    left: 0px;
}


#boyButton {
    right: 10%;
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 1px;
    padding: 13px 50px 13px;
    outline: 0;
    border: 1px solid black;
    cursor: pointer;
    position: relative;
    background-color: rgba(0, 0, 0, 0);
}

#boyButton::after {
    content: "";
    background-color: rgb(92, 195, 255);
    width: 100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    top: 7px;
    left: 7px;
    transition: 0.2s;
}

#boyButton:active::after {
    top: 0px;
    left: 0px;
} */

#submissionForm {
    color: black;
    line-height: 1.5;
    background-color: #FAF9F6;
    border: 1px solid black;
    width: 90%;
    margin: 20px auto;
    position: relative;
    padding: 20px;
}

#subButton {
    padding-right: 10px;
    padding-left: 10px;
}
#clearForm {
    background-color: white;
    border: 1px solid black;
    padding-right: 10px;
    padding-left: 10px;
}
#results {
    line-height: .75;
}

#results h3 {
    font-size: 20px;
}

#results #displayName {
    font-size: 40px;
    font-weight: bold;
}
#results #displayNameStatistics {
    padding-bottom: 70px;
}

.btn{
    font: size 28px;;
    font-weight:300;
    text-transform:uppercase;
    border-radius:100px;border:none;
    color:black;position:relative;overflow:hidden;cursor:pointer}
    /* .btn>*{
        display:inline-block;height:100%;width:100%;-webkit-transition:all .2s;
        transition:all .2s
    }
    .btn__visible{
        padding:1rem 6rem
    }
    .btn__invisible{
        position:absolute;padding:1rem 0;left:0;top:-100%
    }
    .btn:hover{
        background-color: white;
    }
    .btn:hover .btn__visible{
        -webkit-transform:translateY(100%);transform:translateY(100%)
    }
    .btn:hover .btn__invisible{top:0}.btn:focus{
        outline:none;-webkit-animation:pulsate 1s infinite;animation:pulsate 1s infinite
    } */