*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    font-family: 'Manjari', sans-serif;
    background: #f5f5f5;
}

#hero{
    height: 25rem;
}

.place-image{
    transition: all 300ms ease-in-out;
}

.place-image:hover{
    transform: scale(1.07);
}

button{
    transition: all 300ms ease-in-out;
    background-color: #ff6700;
}

button:hover{
    transform: scale(1.07);
    background: #8a0000;
}

#toggleButton{
    background: transparent;
}