body{
    /* box-sizing: border-box; */
    margin: 0;
    padding: 0;
    font-family: sans-serif;

}
section{
    height: 345px;
    background-color: #ff851b;
}
section header{
    display: flex;
    justify-content: space-between;
    margin-left:65px;
    margin-right: 83px;
    text-decoration: none;
}
section header div{
    margin: 10px;
    padding: 5px;
}
section header div a{
    font-size: 20px;
    color: black;
    text-decoration: none;
}
section header div .border{
    border: 1px solid;
    border-radius: 6px;
    padding: 6px;
    border-bottom: 4px solid black;
}
section header div .border:hover{
    background-color: black;
    color: white;
    border: none;
}
section header div .border-none{
    text-decoration: none;
    border: none;
    border-radius: 6px;
    padding: 9px;
    background-color: green;
    color: white;
}
section header div .border-none span{
    background-color: white;
    color: black;
    border-radius: 5px;
}
#earn{
    color: white;
    text-align: center;
}
#earn h1{
    font-size: 55px;
}
#earn-button{
    margin-top: 30px;
    text-align: center;
    justify-content: center;
    text-decoration: none;
}
#earn-button .border{
    text-decoration: none;
    border: none;
    border-radius: 6px;
    padding: 13px;
    background-color: green;
    color: white;
}

#earn-button .LOGIN{
    border: 1px solid;
    border-radius: 6px;
    margin: 15px;
    padding: 12px;
    text-decoration: none;
    color: black;
    border-bottom: 4px solid black;
}
#earn-button .LOGIN:hover{
    background-color: black;
    color: white;
    border: none;
}
div{
    text-align: center;
    margin-top: 10px;
}
.main{
    width: 100%;
    background-color: rgb(218, 214, 214);
    display: flex;
    gap: 16px;
    justify-content: center;
}
.main div{
    background-color: #ff851b;
    width: 28%;
    border-radius: 5px;
    margin-top: 60px;
    margin-bottom: 60px;
}
.main div i{
    margin-top: 20px;
    font-size: 20px;
}

.document{
    display: flex;
    gap: 40px;
    margin: 30px;
    padding: 20px;
}
.document .Earners{
    background-color: gray;
    width: 50%;
    border-radius: 10px;
    text-align: start;
    color: white;
}
.document .Advertisers{
    background-color: #ff851b;
    width: 50%;
    border-radius: 10px;
    text-align: start;
    color: white;
}
.document ul{
    font-size: 20px;
    list-style-type: none;
}
.document .Earners ul li i{
    color: #ff851b;
}
.document .Earners h1 i{
    color: #ff851b;
}
.document .Advertisers h1 i{
    color: white;
}
footer{
    display: flex;
    justify-content: space-between;
    background-color: #ff851b;
}
footer ul{
    display: flex;
    text-decoration: none;
    list-style: none;
    gap: 20px;
    margin-right: 60px;
}
footer ul li a{
    text-decoration: none;
    color: black;
}
footer div p{
    margin-left: 60px;
}
footer div p a{
    text-decoration: none;
    color: cornflowerblue;
}
footer div ul .tab{
    border: 1px solid;
    border-top: none;
    border-bottom: 5px solid black;
    padding: 5px;
    border-radius: 5px;
}
footer div ul .tab:hover{
    border: none;
}

.paragraph p{
    margin: 20px;
    box-shadow: 5px 5px 10px gray;
    padding: 20px;
    border-radius: 10px;
}
.mycutie img{
    border: 5px solid #ff851b;
    display: inline;
    margin: auto;
    width: 400px;
    justify-content: space-between;
    border-radius: 10px;
}


/* fon device */
@media screen and (max-width: 480px){
    section header{
        flex-direction: column;
    }
}