.header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #192c20;
    color: #f6ee8f;
    height: 100px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 10px;
}

.title {
    font-size: 24px;
}

.home-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #f6ee8f;
    border: solid 4px #f6ee8f;
    border-radius: 50%;
    font-size: 20px;
    width: 50px;height: 50px;
    transition: all 0.3s ease;
}

.home-btn:hover {
    color: #192c20;
    transform: scale(0.9);
    border: solid 4px whitesmoke;
}