/* Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');

/* Genral Settings */
*{
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Roboto', 'sans-serif';
    background-color: rgb(255 244 233 / 60%);
}

h1 {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 50px;
    margin: 30px 0 30px 0;
}

footer{
    display: flex;
    justify-content: flex-end;
    position: sticky;
    bottom: 10px;
}

footer #homeBtn{
    background-color: rgb(231,34,56);
    padding: 15px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    margin-right: 10px;
}
footer #homeBtn:hover {
    background-color: rgb(175, 26, 44);
}

footer #homeBtn img {
    height: 50px;
}