body{
    background-image: url(Images/KIRBY.png);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    overflow: hidden;
}

#Greeting{
    text-align: center;
    margin: auto;
    margin-top: 50px;
    width: 200px;
    height: 20px;
    background-color: rgb(242, 186, 213);
    border: 2px solid rgb(243, 109, 156);
    border-radius: 10px;
    display:block;
    padding:5px;
    
    transform: scale(4)
}

#GreetingSub{
    text-align: center;
    font-size: 24px;
    margin: auto;
    margin-top: 100px;
    width: 600px;
    height: 40px;
    background-color: rgb(242, 186, 213);
    border: 4px solid rgb(243, 109, 156);
    border-radius: 20px;
    display:block;
    padding:5px;
}

.Quest{
    display: block;
    width: 25%;
    background-image: url(Images/texture.png);
    background-color: rgb(255, 196, 87);
    border: 8px solid hsl(27, 100%, 50%);
}

.Quest h3{
    margin: 0 auto;
    font-size: 40px;
    margin-left: 80px;
}

.Quest p{
    font-size: 24px;
    padding: 10px;
}

.Quest button{
    display: block;
    margin: 0 auto;
    background-color: hsl(56, 100%, 75%);
    padding:5px;
    border: 1.5px solid black;
    border-radius: 16px;
    margin-bottom:20px;
    transform: scale(2);
}

.Quest button:hover{
    background-color:rgb(98, 255, 98);
    cursor: pointer;
}

#icon{
    max-height:50px;
    max-width:100px;
    float:left
}

#character{
    height: 1000px;
    float: right;
    transform: rotate(-45deg) translateX(700px);
    display: none;
    overflow: clip;
}

#character + img{
    display: none;
    position: absolute;
    font-size: 24px;
    right: 4.5vw;
    top: 6vh;
    float: right;
    overflow: hidden;
    animation-duration: 1.5s;
    transform: rotate(-45deg);
}

@keyframes leanIn{
    0%{opacity: 0}
    80%{opacity: 0}
    from{transform: rotate(360deg)}
}
@keyframes fadeIn{
    0%{opacity: 0}
    80%{opacity: 0}
}