* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    -webkit-tap-highlight-color: #ffffff00
}

body::-webkit-scrollbar{
    width: 0.6rem;
    height: 0.5rem;
}

body::-webkit-scrollbar-thumb{
    border-radius: .5rem;
    background-color: #0004;
    visibility: hidden;
}

body:hover::-webkit-scrollbar-thumb{ 
    visibility: visible;
}

body {
    overflow-x: hidden;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 1rem;
    justify-content: space-between;
    background: #ffffff;
}

.header-left img {
    height: 100px;
}

.header-right {
    list-style: none;
    display: flex;
    align-items: center;
}

.header-right li {
    margin: 0 5px;
}

.header-right li a {
    border: 2px solid #cccccc;
    color: #202020;
    font-weight: 500;
    text-decoration: none;
    font-size: 18px;
    background: #e7e7e7;
    padding: 10px 20px;
    border-radius: 30px;
    transition: 0.3s;
    box-shadow: 0 0 11px 1px #0000002e;
}

.header-right li a:hover {
    background: #ffffff;
}

.main-content {
    margin: 136px 0 0 0;
}

.header-right li a.login-btn {
    border: 2px solid #AF7A1F;
    color: #ffffff;
    background: #4C7031;
}

.header-right img {
    height: 44px;
    margin: 0 0 0 10px;
    display: flex;
    align-items: center;
    border-radius: 50%;
}


@media screen and (max-width: 1100px) {
    .main-header {
        flex-direction: column;
    }

    .header-left img {
        margin: 0 0 25px 0;
    }
}

@media screen and (max-width: 700px) {
    .main-header {
        position: absolute;
    }
    
    .header-right {
        display: grid;
        grid-gap: 2rem 1rem;
        grid-template-columns: auto auto;
        justify-items: center;
        margin: 1rem 0 0 0;
    }

    .main-content {
        margin: 300px 0 0 0;
    }
}