* {
    margin: 0px;
    padding: 0px;
}

body {
    background-color: #f1f0f0;
}

.logo img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

header {
    box-sizing: border-box;

    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 50px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.navbar a {
    position: relative;
    font-size: 18px;
    color: darkorange;
    text-decoration: none;
    font-weight: 500;
    margin-left: 40px;
}

.navbar a::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: darkorange;
    transition: .3s;
}

.navbar a:hover::before{
    width: 100%;
}

.info {
    margin-top: 70px;
    position: relative;
    text-align: center;
    font-size: 20px;
}

.picture img {
    height: 40%;
    width: 40%;
    border-radius: 5%;
}

.projectsinfo {
    margin-top: 70px;
}

#divleft {
    width: 50%;
    float: left;
    text-align: center;
    align-items: center;
}

#divright {
    width: 50%;
    float: right;
    text-align: center;
    align-items: center;
    margin: auto;
}

#divlefthome {
    width: 50%;
    float: left;
    margin-left: 70px;
    margin-top: 180px;
    font-size: 80px;
    position: absolute;
}

#hometextorange {
    color: darkorange;
}

#skills{
    font-size: 14px;
}

#divrighthome {
    width: 50%;
    float: right;
    margin-top: 70px;
}

.logohomepage img {
    height: 70%;
    width: 70%;
    border-radius: 50%;
    margin-left: 100px;
}

.projectspictures img {
    height: 70%;
    width: 70%;
    border-radius: 5%;
}

h3 {
    color: darkorange;
}

#smalltext {
    font-size: 16px;
}

#smallertext {
    font-size: 14px;
}

#projecttitles {
    font-size: 24px;
}