*{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 0;
    margin: 0;
    background-color: linear-gradient(rgb(9, 242, 91),rgb(10, 154, 236));
}
#logo a{
    text-decoration: none;
    color: black;
    font-weight: 400;
}
.container h1,h2{
    font-size: larger;
    font-weight: 600;
}
#menu{
    display: none;
}
.line{
    width: 40px;
    margin: 15%;
    border: 2px solid black;
}
nav{
    position: sticky;
    top: 0%;
    padding: 1%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2%;
    background-color: aqua;
}
nav ul{
    width: 40%;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
}
nav ul li a{
    text-decoration: none;
    color: rgb(0, 0, 0);
    padding: 10%;
    border-bottom: none;
}
nav ul li a:hover{
    border-bottom: 4px solid blueviolet;
}
.container {
    border: 5px solid;
    margin: auto;   
    width: 50%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.image{
    width: 60%;
    height: 100%;
}
img{
    width: 100%;
    height: 100%;
    border-radius: 100%;
}
.about p{
    font-size: medium;
    text-indent: 5%;
    text-align: justify;
}
.footer{
    margin-top: 2%;
    background-color: aqua;
    padding-top: 5%;
    text-align: center;
}
#up{
    position: fixed;
    top: 90%;
    left: 93%;
    padding: 1%;
    background-color: red;
    border-radius: 100%;
}
#up a{
    color: aliceblue;
    font-weight: 700;
    font-size: large;
    text-decoration: none;
}
@media screen and (max-width: 800px){
    nav ul{
        display: none;
    }
    #menu{
        display: contents;
    }
    #up{
        position: fixed;
        top: 90%;
        left: 85%;
        padding: 1%;
        background-color: red;
        border-radius: 100%;
    }
}