@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Rye&display=swap');

body {
    font-family: 'Rye';
    background-image: linear-gradient(to left, #F7B538, #780116);
    
}
h1 {
    text-align: center;
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.384);

}
p{
    color: rgb(0, 0, 0);
    text-align: center;
    
}
main {
    box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.418);
    padding: 20px;
    width: 500px;
    margin: auto;
    border-radius: 20px;
    background-color: #F7B538;
}
img {
    height: 100%;
    width: 100%;
    border-radius: 12px;
    transition: 0.40s ease;
}
img:hover {
    transform: scale(1.10);
}