*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
body{
    background: #080808;
    color: antiquewhite;
}
#header{
    padding: 50px;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center; /*Fond this background setup on severl differet websites, im gonna try to see if i can get it to work for mine*/
}
.headertext{
    
    margin-top: 5%;
    font-size: 30px;
}
.headertext h1{
    margin-top: 5%;
    font-size: 60px;
}
nav{
    /*background-color: darkcyan;
    border: 5px solid antiquewhite;*//*decided to try out a new look for the main screen, i think i like the picture over the pattern and bar from before*/
    
    display:flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
    color: antiquewhite;
}
nav ul li a{
    color:antiquewhite; 
    text-decoration: none;
    font-size: 18px;
    position: relative;
}
nav ul li a::after{ /* this section adds a fancier underline to the links at the top of the page, it looks a lot better than before, it did take a long time to get working though*/
    content: '';
    width: 0%;
    height: 3px;
    background: navy; /*temporary color choice for visability, but i hope i can use this color in the final*/
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width:100%;
}
.logo{
    width: 100px;
    height: 100px;
}

/*start working on the about section here*/

#about{
    padding: 80px 5%; 
    color: #ababab;
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5%;
}
.about-collum1{
    flex-basis: 30%; /*makes the image take exactly half the pages width*/
}
.about-collum1 img{
    width: 100%; /*width relitive to collum 1, not the whole page like in header*/
    border-radius: 15px;
}
.about-collum2{
    flex-basis: 60%;
}
.section title{
    font-size: 90px;
    font-weight: 800;
    color: antiquewhite;
}

/*Start working on the work history section*/

#history{
    padding: 100px 5%;
    display:block;
    align-items: left;
    justify-content: space-between;
    flex-wrap: wrap;
}
.history-collum{
    flex-basis: 30%;
    transition: background-color 0.5s ease;
    transition: .5s;
}

.history-collum:hover{
    background-color: rgba(16, 0, 109, 0.644);
}

/*Start work on the projects section*/

#projects{
    padding: 100px 5%;
}
#target {
    display: none;
}

#target.open {
    display: block;
}

/*Start work on the contact section*/
#contact{
    padding: 100px 5%;
    display:block;
    align-items: left;
    justify-content: space-between;
    flex-wrap: wrap;
}

/*make sure footer lays at the bottom*/
footer {
    margin-top: auto;
    text-align: center;
    padding: 20px 0;
}