@font-face {
    font-family: sketchHandwriting;
    src: url(../fonts/sketchHandwriting.otf);
}

@font-face {
    font-family: moonFlower;
    src: url(../fonts/moonFlower.ttf);
}

@font-face {
    font-family: moonFlower;
    src: url(../fonts/moonFlowerBold.ttf);
    font-weight: bold;
}

* {
    box-sizing: border-box;
}

body {
    background-image: url(../images/riso-darkpink.png) ;
    overflow-x: hidden;
}

#container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

main {
    z-index: 0;
    position: relative;
}

.welcomeImg {
    position: relative;
    margin-top: 200px;
    height: 532px;
    background-image: url(../images/paper1.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.welcomeTxt {
    padding-top: 50px;
    padding-left: 75px;
    text-align: left;
}

h1 {
    color: darkgreen;
    font-family: sketchHandwriting, cursive, serif;
    font-size: 80px;
    font-weight: 100;
    margin: 0;
}

.welcomeTxt h1 {
    transform: rotate(-7deg)
}

.welcomeTxt p {
    color: black;
    font-family: moonFlower, sans-serif;
    font-size: 35px;
    margin: 0;
    padding-left: 50px;
    padding-right: 50px;
}

a {
    color: black;
    font-family: moonFlower, sans-serif;
    font-size: 50px;
    text-decoration: none;
    margin: 30px;
}

#select {
    margin-top: 30px;
    position: relative;
}

.signature {
    position: absolute;
    left: 300px;
    top: 280px;
    transform: rotate(-10deg);
}

.signature h1 {
    font-size: 100px;
}

.stickers {
    position: absolute;
    max-width: 20%;
    height: 95%;
    max-height: 95%;
    text-align: center;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    align-content: space-between;
}


.stickers.left {
    left: 0px;
}

.stickers.right {
    right: 0px;
}

.shadow {
    filter: drop-shadow(6px 8px 7px rgba(51, 0, 16, 0.5));
}

#enter {
    z-index: 3;
}

#enterCircle {
    z-index: 2;
    width: 150px;
    position: absolute;
    opacity: 0;
    transition: 0.3s;
}

#enterCircle:hover{
    opacity: 0.5;
}

#exitCircle {
    z-index: 2;
    width: 150px;
    position: absolute;
    opacity: 0;
    transition: 0.3s;
}

#exitCircle:hover{
    opacity: 1;
}