body{
    background-color: rgb(236, 236, 236);
    font-family: "Apercu",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto";
    margin: 0;
}
nav{
    display: flex;
    justify-content: space-between;
    margin: 0;
    background-color: white;
    height: 70px;
    width: 100%;
}
.nav-ul{
    display: flex;
    justify-content: flex-end;
    list-style-type: none;
    text-transform: uppercase;
    margin-right: 10px;
}
li{
    margin: 8px 8px;
}
.logo{
    height: 45px;
    margin: 12px 15px;
}

header{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.welcome{
    margin-bottom:0;
}
.second-text{
    margin-top: 2px;
    color: rgb(82, 82, 82);
}
.intro-div{
    height: 600px;
    width: 500px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.intro-pipe{
    height: 600px;
    width : 500px;
}
.pipe{
    margin-top: 89px;
}
.button-holder{
    width: 62%;
    justify-content: center;
    padding-left: 37%;
}
.button{
    height: 65px;
    width: 120px;
    background-color: rgb(17, 17, 132);
    border-radius: 20px;
    color: white;
    text-align: center;
    padding-top: 1px;
    border: solid black 1px;
}
.button:hover{
    background-color: rgb(27, 27, 202);
    box-shadow: -4px 4px black;
    
}
.python-div{
    width: calc(100% - 80px);
    border-radius: 5px;
    border: solid black 1px;
    background-color: white;

    margin: 40px;
    margin-top: 0;
    margin-bottom: 0px;
    padding: 10px;
}
.python-text{
    
}
.python-div:hover{
 box-shadow: -4px 4px;
}

.about-me{
    width: 100%;
    padding: 50px;
    margin-bottom: 40px;
}
.about-me-text{
    color: rgb(82, 82, 82);
    padding-right: 100px;
}

footer{
    height: 100px;
    background-color: white;
    
}
.footer-list{
    color: rgb(66, 66, 66);
    height: 100%;
    list-style-type: square;
    display       : flex;
    flex-direction: column;
    flex-wrap     : wrap;
    justify-content: space-evenly;
}
a{
    text-decoration: none;
    color: black;
}
a:hover{
    color: rgb(122, 122, 122);
}
a:active{
    color: rgb(201, 201, 201);
}