@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;1,300&display=swap');

* {
  font-family: 'Nunito', sans-serif;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

p {
  font-size: 20px;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

ul {
  font-size: 20px;
}

/*
#3D348B
#3772FF
#FFFFFF
#211103
*/

header {
  width: 100vw;
  height: 60vh;
  background-image: url("../Images/creativecoding-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

header h1 {
  color: #FFFFFF;
  font-size: 75px;
  padding: 200px 0px 0px 200px;
}

nav {
  overflow: hidden;
  padding: 30px 0px;
  text-align: center;
  padding-top: auto;
  padding-bottom: auto;
  font-size: 30px;
  text-decoration: none;
  background-color: #3D348B;
}

nav a {
  text-decoration: none;
  color: #3772FF;
  margin: 15px;
} 

/* nav a:hover {
  background-color: white;
  color: black;
} */

#about {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #3772FF;
  padding: 30px 0px;
  color: #FFFFFF;
}

#about p {
  font-size: 32px;
  width: 50%;
}

#skills {
  background-color: #3D348B;
  text-align: center;
  padding: 30px 0px;
}

#skills h1 {
  color: #3772FF;
}

#skills h2 {
  color: #3772FF;
}

.skilled {
  display: flex;
  justify-content: space-evenly;
}

.skilled li {
  color: #FFFFFF;
}

.languages h3, .frameworks h3, .professional h3{
  background-color: #FFFFFF;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 50px;
}


#projects {
  background-color: #3772FF;
  color: #FFFFFF;
  padding: 25px;
} 

#projects a {
  color: #FFFFFF;
  text-decoration: underline;
}

.LostCity {
  text-align: center;
} 

#LostCityDetails {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

#LostCityDetails p {
  width: 65%;
  text-align: left;
}

.Retired {
  text-align: center;
} 

#RetiredDetails {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

#RetiredDetails p {
  width: 65%;
  text-align: left;
}

#footer {
  height: 10vh;
  background-color: #3D348B;
  color: #FFFFFF;
  text-align: center;
  padding-top: 2vh;
}