* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    list-style: none;
    text-decoration: none;
}

h1{
    font-size: 40px;
    text-align: center;
}
h1 {
    color: #474544;
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 7px;
    text-align: center;
    text-transform: uppercase;
    margin: 3ch 0;
}
h3{
    font-size: 25px
}

html, body{
/* background-color:rgb(174, 202, 202); */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
width: 100%;
height: 100%;
overflow-x: hidden;
background-color: #a0b9f1;
color: rgb(7, 4, 0);
}

header {
    height: 25em;
    background-color: #2a268d;

    background-image: linear-gradient(to bottom right, #33308a, rgb(4, 0, 48));
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: white;
    padding: 1ch 5ch;
}



nav ul {
    display: flex;
    flex-wrap: wrap;
    /* gap: 1ch; */
    list-style: none;
    justify-content: end
}

nav ul li a{
    text-decoration: none;
}

nav ul li a div {
    color: white;
    font-weight: 600;
    padding: 1ch 2ch;
}

nav ul li a div:hover{
    background-color:rgba(250, 235, 215, 0.524)
    
}


.scroll-point{
    margin: 5px 0;
   display: flex;
   gap: 1ch;
   justify-content: center;
   flex-direction: row;
}

.dot{
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color:rgb(47, 27, 138)
}

.skills{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #a0b9f1;
}

.skills h1{
    margin-top:-1ch
}

@media (min-width: 1000px){
    .skills h1{
        margin-top:-10ch
    }
    
}

.skill-board{
    background-color:rgba(103, 121, 121, 0.224);
    width: 90%;
    display: flex;
    flex-direction: column;
    padding: 35px 0;
    box-shadow: 0 5px 20px grey;
}

.skill-board > .row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.skill-board > .row .col{
    margin: 5px 0;
    width: 70%
}

.skill-board progress{
    width: 100%;
    height: 15px;
}


@media screen and (min-width: 500px) {

    .skill-board > .row .col{
        margin: 10px 0;
        width: 70%
    }

    .skill-board progress{
        width: 100%;
        height: 15px
    }
}

@media screen and (min-width: 720px) {


    .skill-board{
        width: 70%
    }

    .skill-board > .row .col{
        margin: 15px 0;
        width: 70%
    }

    .skill-board progress{
        width: 100%;
        height: 15px
    }
}

@media screen and (min-width: 1000px) {



    .skill-board > .row .col{
        width: 40%
    }

    .skill-board progress{
        width: 100%;
        height: 15px
    }

}

@media screen and (max-width: 500px){

    *{
        font-size:17px;
    }

    h1{
        font-size: 25px
    }
    
    h3{
        font-size: 20px
    }
}

@media screen and (max-width: 800px) {
    header{
        display: none
    }

 .landing{
    position:relative;
    top: 0;
    margin-bottom: 0;
 }    
}