* {
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", serif;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 14px;  
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(255, 166, 0);
    border-radius: 6px;    
}

body {
    background-color: rgba(247, 184, 68, 0.494); 
}

header {
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 20px;
    background-color: rgb(255, 166, 0);
}

header img{
    width: 200px;
}

footer {
    display: flex;
    justify-content: center;
}

footer img {
    width: 150px;
    padding-top: 20px;
    padding-bottom: 20px;
} 

@media (max-width: 900px) {
    footer {
        display: none;
    }
}

@media (max-width: 450px) {
    header img {
        width: 130px;
    }
}