@font-face {
    font-family: "Sunnysfont";
    src: url('../fonts/Sunnysfontstyle-Regular.ttf');
}
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: rgb(250, 250, 173);
}

.container{
    font-family: "Sunnysfont";
    font-size: 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0 2rem;
   

}

.buttonContainer{
    display:none;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;
    align-content: center;
    margin: auto;
    text-align: center;
    
}
button{
    font-family: "Sunnysfont";
    font-size: 0.8rem;
    background-image: url("./images/Button.png");
    outline: none;
    border:none;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 1rem;
    padding: 0.5rem;
    height: 2.8rem;
    width: 7.5rem;   
}
.adventureImageContainer{
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    
}
.adventureTextContainer{
    display: flex;
    justify-content:center;
}
.adventureText{
    font-size: 1.5rem;
}
.title, .adventureImage{
    height: 80%;
    margin: 2rem;
    width: 90%;
}

@media(min-width:700px){
    .adventureImage{
        height: 20rem;
        margin: 2rem;
        width: 70rem;
    }
    .adventureText{
        font-size: 2rem;
    }
    button{
        font-size: 1rem;
        height: 4rem;
        width: 11rem;
        margin:2rem;
    }

}