*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: rgb(244, 194, 194);
}

html{
    overflow-x: hidden;
}

body{
    text-align: center;
    font-size: 30px;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    color: rgb(221, 97, 97);
}

#panel {
    width: 100%;
    height: 100vh;
    background-color: rgb(221, 97, 97);
    position: fixed;
    top:  0px;
    left: 0px;
    align-content: center;
    color: rgb(244, 194, 194);
    font-weight: bold;
    transition: all 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif ; 
    z-index: 100;
}

.slide-up{
    transform: translateY(-97vh) ;
}

img {
    width: auto;
    height: 300px;
    padding: 20px;
   
}

h1{
    padding-top: 50px;
    font-family:  "Oleo Script Swash Caps", serif; 
}

h2, h3{
 font-size: 40px;
 font-family: "Oleo Script Swash Caps", serif; 

}




p{
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
}

#btn {
    background-color: rgba(131, 210, 128, 1);
    padding: 10px 50px;
    border: none;
    border-radius: 10px;
    box-shadow: 12px 12px 20px rgb(105, 121, 115);
    font-size: 1em;
    margin-bottom: 200px;
    cursor: pointer;
    transition: all 0.2s linear;

    
}

#btn:hover {
    background-color: rgb(221, 97, 97);
    rotate: 5deg;

}

