@import url(https://fonts.googleapis.com/css?family=Inconsolata:400,700);
@import url(https://fonts.googleapis.com/css?family=Hammersmith+One);

body {
    background-color: #efa8c0;
}

.middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

button {
    margin: 10px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 24px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

button#noBtn {
    z-index: 1000;
}

/* New hover effect */
button:hover {
    animation: pulse 0.8s infinite;
    background-color: #ef1818;
}

.kisses {
    width: 300px;
    height: 300px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


.container {
    width: 512px;
    height: 512px;
    margin: auto;
    margin-top: 60px;
    margin-top: -80px;
    /* I'm doing this so it shows up on the front page xD */
}

.heart {
    z-index: 1;
    width: 150px;
    height: 150px;
    position: absolute;
    top: 50%;
    margin-top: -75px;
    left: 50%;
    margin-left: -75px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgd2lkdGg9IjE3M3B4IiBoZWlnaHQ9IjE1OHB4IiB2aWV3Qm94PSIwIDAgMTczIDE1OCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTczIDE1OCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8cGF0aCBmaWxsPSIjRUY0NjU3IiBkPSJNMTU3LjMzMSwxNS41MDRjLTE5LjU1OS0xOS41NTktNTEuMjcxLTE5LjU1OS03MC44MzEsMGMtMTkuNTU5LTE5LjU1OS01MS4yNzEtMTkuNTU5LTcwLjgzMSwwDQoJYy0xOS41NTksMTkuNTU5LTE5LjU1OSw1MS4yNzEsMCw3MC44MzFsNzAuODMxLDcwLjgzbDcwLjgzMS03MC44M0MxNzYuODksNjYuNzc1LDE3Ni44OSwzNS4wNjQsMTU3LjMzMSwxNS41MDR6Ii8+DQo8L3N2Zz4=");
}

.hometown {
    font-family: 'Inconsolata', sans-serif;
    font-weight: bold;
    font-size: 2.0em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    width: 512px;
    height: 512px;
    color: #FFF;
}

#top {
    width: 150px;
    margin: auto;
    position: relative;
}

#top span {
    height: 350px;
    position: absolute;
    width: 20px;
    left: 50%;
    margin-left: -10px;
    top: 110px;
}

.char1 {
    transform: rotate(-28deg);
}

.char2 {
    transform: rotate(-20deg);
}

.char3 {
    transform: rotate(-12deg);
}

.char4 {
    transform: rotate(-4deg);
}

.char5 {
    transform: rotate(4deg);
}

.char6 {
    transform: rotate(12deg);
}

.char7 {
    transform: rotate(20deg);
}

.char8 {
    transform: rotate(28deg);
}


#bottom span {
    height: 350px;
    line-height: 700px;
    position: absolute;
    width: 20px;
    left: 50%;
    margin-left: -10px;
    top: 10px;

}

#bottom .char1 {
    transform: rotate(15deg);
}

#bottom .char2 {
    transform: rotate(8deg);
}

#bottom .char3 {
    transform: rotate(0deg);
}

#bottom .char4 {
    transform: rotate(-8deg);
}

#bottom .char5 {
    transform: rotate(-15deg);
}


.city {
    font-family: "Hammersmith One";
    display: inline-block;
    width: 100%;
    height: 300px;
    padding-top: 45px;
    text-align: center;
    font-size: 3.0em;
    z-index: 100;
    position: absolute;
    top: 50%;
    margin-top: -110px;
}


.heart {
    animation: HEARTBEAT 2.5s infinite;
}

#top span {
    animation: BOUNCE 2.5s infinite;
}

@keyframes HEARTBEAT {
    0% {
        transform: scale(1);
    }
    5% {
        transform: scale(1.3);
    }
    10% {
        transform: scale(1.1);
    }
    15% {
        transform: scale(1.5);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes BOUNCE {
    0% {
        top: 110px;
    }
    10% {
        top: 80px;
    }
    15% {
        top: 85px;
    }
    20% {
        top: 70px;
    }
    75% {
        top: 110px;
    }
    100% {
        top: 110px;
    }
}


.penguin {
    /* change code below */
    --penguin-skin: black;
    --penguin-belly: white;
    --penguin-beak: orange;
    /* change code above */

    position: relative;
    margin: auto;
    display: block;
    margin-top: 2%;
    width: 300px;
    height: 300px;
}

.penguin-top {
    top: 10%;
    left: 25%;
    background: var(--penguin-skin, gray);
    width: 50%;
    height: 45%;
    border-radius: 70% 70% 60% 60%;
}

.penguin-bottom {
    top: 40%;
    left: 23.5%;
    background: var(--penguin-skin, gray);
    width: 53%;
    height: 45%;
    border-radius: 70% 70% 100% 100%;
}

.right-hand {
    top: 5%;
    left: 25%;
    background: var(--penguin-skin, black);
    width: 30%;
    height: 60%;
    border-radius: 30% 30% 120% 30%;
    transform: rotate(130deg);
    z-index: -1;
    animation-duration: 2s;
    animation-name: wave;
    animation-iteration-count: infinite;
    transform-origin: 0% 0%;
    animation-timing-function: linear;
}

.left-hand {
    top: 0%;
    left: 75%;
    background: var(--penguin-skin, gray);
    width: 30%;
    height: 60%;
    border-radius: 30% 30% 30% 120%;
    transform: rotate(-45deg);
    z-index: -1;
}

.right-cheek {
    top: 15%;
    left: 35%;
    background: var(--penguin-belly, white);
    width: 60%;
    height: 70%;
    border-radius: 70% 70% 60% 60%;
}

.left-cheek {
    top: 15%;
    left: 5%;
    background: var(--penguin-belly, white);
    width: 60%;
    height: 70%;
    border-radius: 70% 70% 60% 60%;
}

.belly {
    top: 60%;
    left: 2.5%;
    background: var(--penguin-belly, white);
    width: 95%;
    height: 100%;
    border-radius: 120% 120% 100% 100%;
}

.right-feet {
    top: 85%;
    left: 60%;
    background: var(--penguin-beak, orange);
    width: 15%;
    height: 30%;
    border-radius: 50% 50% 50% 50%;
    transform: rotate(-80deg);
    z-index: -2222;
}

.left-feet {
    top: 85%;
    left: 25%;
    background: var(--penguin-beak, orange);
    width: 15%;
    height: 30%;
    border-radius: 50% 50% 50% 50%;
    transform: rotate(80deg);
    z-index: -2222;
}

.right-eye {
    top: 45%;
    left: 60%;
    background: black;
    width: 15%;
    height: 17%;
    border-radius: 50%;
}

.left-eye {
    top: 45%;
    left: 25%;
    background: black;
    width: 15%;
    height: 17%;
    border-radius: 50%;
}

.sparkle {
    top: 25%;
    left: 15%;
    background: white;
    width: 35%;
    height: 35%;
    border-radius: 50%;
}

.blush-right {
    top: 65%;
    left: 15%;
    background: pink;
    width: 15%;
    height: 10%;
    border-radius: 50%;
}

.blush-left {
    top: 65%;
    left: 70%;
    background: pink;
    width: 15%;
    height: 10%;
    border-radius: 50%;
}

.beak-top {
    top: 60%;
    left: 40%;
    background: var(--penguin-beak, orange);
    width: 20%;
    height: 10%;
    border-radius: 50%;
}

.beak-bottom {
    top: 65%;
    left: 42%;
    background: var(--penguin-beak, orange);
    width: 16%;
    height: 10%;
    border-radius: 50%;
}

.penguin * {
    position: absolute;
}

.penguin {
    animation-duration: 10s;
    animation-name: loop;
    animation-iteration-count: infinite;
    transform-origin: 0% 0%;
    animation-timing-function: linear;
}

@keyframes wave {
    10% {
        transform: rotate(110deg);
    }
    30% {
        transform: rotate(130deg);
    }
    50% {
        transform: rotate(110deg);
    }
    80% {
        transform: rotate(130deg);
    }
    100% {
        transform: rotate(110deg);
    }
}

@keyframes loop {
    0% {
        transform: rotateY(0deg);
    }
    25% {
        transform: rotateY(-10deg);
    }
    50% {
        transform: rotateY(0deg);
    }
    75% {
        transform: rotateY(10deg);
    }
    100% {
        transform: rotateY(0deg);
    }
}


.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #efa8c0;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: scaleUp 0.3s ease-out forwards;
}


@keyframes scaleUp {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.placeholder-img {
    width: 400px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.content-holder p {
    font-size: 32px;
    color: white;
    text-align: center;
    font-family: "Hammersmith One";
    text-transform: uppercase;
}

@media screen and (max-width: 1280px) {
    body {
        display: flex;
    }
}

.btns {
    margin-top: -80px;
    z-index: 1000;
}
.btns button {
    z-index: 1000;
}


