* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body,
html {
    height: 100vh;
    margin: 0;
    padding: 0;
    width: 100vw;
}

body {
    align-items: stretch;
    background-color: black;
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    -ms-box-align: stretch;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -ms-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.window {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 65%;
    width: 100%;
}

.floor {
    background-image: url("../../imgs/woodenFlooring.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 35%;
    opacity: 0.05;
    width: 100%;
    z-index: -3;
}

.clickMe {
    -webkit-animation: clickGlow 1s infinite;
    animation: clickGlow 1s infinite;
    cursor: pointer;
    pointer-events: auto;
}

@-webkit-keyframes clickGlow {
    0% {
        opacity: 0.5;
    }
    25% {
        opacity: 0.75;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 0.75;
    }
    100% {
        opacity: 0.5;
    }
}

@keyframes clickGlow {
    0% {
        opacity: 0.5;
    }
    25% {
        opacity: 0.75;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 0.75;
    }
    100% {
        opacity: 0.5;
    }
}

p {
    margin: 0;
    padding: 0;
}

.message {
    align-items: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-box-align: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-box-pack: center;
    display: none;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    height: 65%;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.text {
    color: white;
    display: none;
    font-family: "Indie Flower", cursive;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.wishMessage {
    align-items: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-box-align: center;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -ms-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-box-pack: center;
    display: none;
    -ms-flex-align: center;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    height: 65%;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.wishText {
    color: white;
    font-family: "Indie Flower", cursive;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}
