*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    background-color: #e9d8a6;
}
img{
    width: 3rem;
}
button{
    background-color: #ca6702;
    width: 3rem;
}
button:hover{
    transform: scale(1.05);
    background-color: #ca8600;
    cursor: pointer;
    transition: all 0.2s ease;
}