* {
    padding: 0px;
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(22, 22, 22, 0.98);
    margin: 0% 20%;
}

.navigation{
    display: flex;
    width: 100%;
    background: rgba(22, 22, 22, 0.99);
    align-items: center;
    justify-content: space-between;
    /* padding: 0px 20px; */
    border-bottom: 2px solid rgba(0, 0, 0, 0.684);
}

.nav-presentation{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
}

.nav-presentation > .icon-header{
    color: white;
    padding: 3px;
    margin-right: 1vb;
}

.navigation ul{
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 20px 0px;
    padding-right: 20px;
    
}

.navigation ul li{
    padding-right: 1vb;
}

.navigation p{
    color: white;
    font-weight: 500;
    font-size: larger;
}

.navigation a{
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: larger;
    width: 100%;
    height: 100%;
    padding: 3px;
}

.navigation a:hover, .icon-header:hover{
    padding: 1px;
    border: 2px dotted white;
}

h1{
    /* color: white; */
    font-size: larger;
    font-weight: 500;
}

h2{
    font-size: large;
    font-weight: 400;
}

a{
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}


.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: rgba(22, 22, 22, 0.99); 
}

.about{
    padding: 40px 0px;
}

.icon{
    /* float: right; */
}

.about p{
    line-height: 25px;
}

