body {
    margin: 0%;
    padding: 0%;
    /* background-image: url(back-ground.jpeg); */
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
    cursor: default;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
#home{
    background-color: darkgray;
}

header {
    color: seashell;
}

nav {
    display: flex;
    position: fixed;
    background-color: black;
    width: 100%;
}

.portfolio {
    margin-top: 20px;
    margin-left: 15px;
}

.menu {
    display: flex;
    padding: 20px;
    padding-right: 10%;
    margin-left: 50%;
}

li {
    text-decoration: none;
    padding: 10px;
    list-style: none;
}

a {
    text-transform: uppercase;
    text-decoration: none;
    color: seashell;
    cursor: pointer;
}

a:hover {
    color: skyblue;
}

.left {
    font-size: 40px;
    padding: 15%;
    float: left;
}

span {
    color: tomato;
    font-family: "Lucida Console", "Courier New", monospace;

}

section {
    display: flex;
    display: inline-block;
    min-height: 100vh;
}

.right>img {
    margin: 5%;
    padding: 3%;
    position: relative;
    background: tomato;
    border: 2px solid white;
    border-radius: 50%;
    height: 180px;
    width: auto;
    margin-left: 20%;
}

.title{
    margin-left: 75%;
}
.description{
    margin-left: 63%;
}
footer {
    color: aliceblue;
    background-color: black;
    text-align: center;
    margin-top: 72vh;
}
.footer{
    padding: 1vh;
}

.sub{
    background-color: aliceblue;
}
html{
    scroll-behavior: smooth;
}
h2{
    margin: 0%; 
    padding: 0%;
    text-align: center;
    margin-top: 15vh;
}
label{
    display: flex;
    margin: 0.3rem;
}
@media only screen and max-width:768px{
   nav li{
        text-align: center;
        width: 100%;
    }
    
}