body{
    margin: 0;
    padding: 0;
   font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    background-color: wheat;
    user-select: none;
    font-size: 20px;
}
strong, b{
    color: rgb(0, 255, 0);
}
main{
    width: 60%;
    margin: 15px auto;
    background-color:#7681a1 ;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 1000px;
    box-shadow: 3px 3px 8px #333;
    border-radius: 10px;
    padding: 2%;
    box-sizing: border-box;
}
section{
    width: 96%;
    margin: 0 auto;
   
}
#b{
    border-bottom: none;
}
nav{
    border-top: outset black 1px;
}
nav div{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
    font-weight:700;
    font-size: 18px;
}
nav div a{
    text-decoration: none;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px #333;
}
nav div a:hover{
     box-shadow: none;
    background: rgba(0, 0, 0, 0.6);
}
#criador{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 50%;
    margin:  0 auto;
}
#criador a{
    text-decoration: none;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px #333;
}
#criador a:hover{
     box-shadow: none;
    background: rgba(0, 0, 0, 0.6);
}
img{
    border-radius: 50%;
    height: 50px;
    width: 50px;
}
h2,h1{
    text-align: center;
}
@media only screen and (max-width: 1000px){
    body{
        background: #7681a1;
    }
    main{
        margin: 0;
        border-radius: 0;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
    }
    #criador{
        width: 80%;
    }
    nav div{
        width: 80%;
    }
}
@media only screen and (max-width: 400px){
    body{
        font-size: .8em;
    }
    nav div{
        width: 80%;
        padding: 0 5px;
        font-size: 15px;}

}
