html, body{
    margin: 0%;
    padding: 0%;
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #fff8f0;
}
header {
    position: relative;
    display: flex;
    align-items: center;
    height: 60px;
}

header h1 {
    padding-left: 15px;
    color: #fe8c00;
    margin: 0;
}

#etelek {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

#etelek a{
    margin-right: 15px;
    font-size: large; 
    text-decoration: none; 
    color: #000; 
}
#etelek a:hover{
       color: #fe8c00;
}
#webShop-btn{
    margin-left: auto;
    margin-right: 15px;
    padding: 10px;
    border-radius: 10px;
    background-color: #f9ac4f;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease-in-out;
}
#webShop-btn:hover{
    background-color: #eb9c3c;
    color: white;
}
main{
    margin: 30px;
    flex: 1;
}
footer{
    padding: 15px;
    text-align: center;
}
