html{
  scroll-behavior: smooth;
}
body{
  margin: 0;
  border: 0;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 16px;
  font-family: "SEGOE UI";
}
a{
  text-decoration: none;
}

.top{
  position: fixed;
  bottom: 5%;
  right: 5%;
  width: 2%;
  overflow: hidden;
  border-radius: 5px;
  background-color: rgb(105, 25, 208);
}
.top:before{
  content: "";
  display: block;
  padding-top: 100%;

}
.top__content{
  position: absolute;
  top: 20%;
  right: 40%;

}
.top-content div{
  display: table;
  width: 100%;
  height: 100%;
}
.top-content span{
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.top span a{
  color: white;
}



header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(177, 134, 226);
  padding: 1% 2%;
}
.header__logo{
  display: flex;
  flex-grow: 2;
}
.header__logo a{
  color: white;
}

.header__nav{
  display: flex;
  flex-grow: 1;
  scroll-behavior: smooth;
}

.header__nav ul{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex-grow: 1;

}
.header__nav li{
  display: flex;
  list-style: none;
  color: white;
  border: 1px solid inherit;
  border-radius: 5px;
  padding: 2%;
  margin: 1%;
  flex-grow: 1;
  background-color: rgb(105, 25, 208);
}
.header__nav a{
  color: white;
}

.section{
  height: 60vh;
  background-color: rgb(197, 106, 219);
  padding: 5% 20%;
  display: flex;
  flex-direction: column;
}
.main{
  background-color: white;
  height: 80vh;
  color: black;
  align-items: center;
  justify-content: center;
}
.section__header{
  background-color: inherit;
  color: white;
  display: flex;
  justify-content: center;
  font-size: 35px;
  padding-bottom: 10%;
}
.section__content{
  display: flex;
  /*align-content: stretch;*/
  height: 100%;
  flex-direction: row;
  flex-grow: 1;
}

.section__content__component{
  display: flex;
  flex-direction: column;
  background-color: gray;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  flex-grow: 1;
}

.section__content__component__header{
  background-color: pink;
  font-weight: bold;
  display: flex;
  height: 33%;
  justify-content: center;
  align-items: center;
  padding-left: 10%;
  padding-right: 10%;
}

.section__content__component__content{
  background-color: violet;
  height: 67%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 10%;
  padding-right: 10%;
}

.section__content__component__column--header{
  text-transform: uppercase;
  font-weight: bold;
}

.section__content__component ul{
  display: flex;
  flex-direction: column;
  flex-grow: 1;

}
.section__content__component li{
  background-color: rgb(207, 190, 189);
  list-style: none;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.section__content__component__button{
  border: 1px solid black;
  border-radius: 5px;
  margin-top: 5%;
  font-weight: bold;
  padding: 1%;
}
footer{
  display: flex;
  color: black;
  align-items: center;
  justify-content: space-between;
  padding: 5% 20%;
}

.footer__column--header{
  text-transform: uppercase;
  font-weight: bold;
}

.footer__column li{
  list-style: none;
}


.about{background-color: rgb(204, 108, 91);}
.skills{
  background-color: rgb(177, 134, 226);
}
.projects{background-color: rgb(246, 114, 91);}
.contact{background-color: rgba(128, 171, 68, 0.95);}

/*@media(max-width: 1000px){
  header{
    flex-direction: column;
    align-items: flex-start;
  }
}*/
