body {
  background-color: #0d0d0d;
  color: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}

header {
  background-color: #5d3fd3;
  padding: 60px 0 20px 0;
}

.fixed-header {
  position: fixed;
  background-color: #5d3fd3;
  padding: 20px 0;
  border-radius: 2px;
}

section {
  padding-bottom: 50px;
  margin: 0 20px;
}

h1 {
  font-size: 36px;
  margin: 0;
}

p {
  font-size: 20px;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  display: inline;
  margin: 0 10px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}

a {
  color: #8243ff;
}

img {
  max-width: 100%;
}

button {
  border: none;
  color: #fff;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 2px;
}

.rounded {
  width: 250px;
  border-radius: 50%;
}

.project {
  padding: 20px 0;
  margin: 0 0 60px 0;
  background-color: #5d3fd3;
  border-radius: 2px;
}

.project h3 {
  font-size: 24px;
}

.project-image img {
  border-radius: 2px;
}

.play-button {
  background-color: #f44336;
  border: 2px solid #f44336;
  transition-duration: 0.3s;
}

.play-button:hover {
  background-color: #fff;
  color: #000;
  border: 2px solid #f44336;
}

.code-button {
  background-color: #2b3137;
  border: 2px solid #2b3137;
  transition-duration: 0.3s;
}

.code-button:hover {
  background-color: #fff;
  color: #000;
  border: 2px solid #2b3137;
}

@media screen and (min-width: 700px) {
  .project-details {
    display: flex;
    justify-content: center;
  }
  .project-image {
    flex: 1;
    margin-right: 10px;
  }

  .project-image img {
    max-width: 100%;
    height: auto;
  }

  .project-text-right {
    flex: 2;
    padding-right: 50px;
  }
  .project-text-left {
    flex: 2;
    padding-left: 50px;
  }
}
@media screen and (max-width: 700px) {
  .project-image {
    margin-right: 10px;
  }

  .project-image img {
    max-width: 100%;
    height: auto;
  }
}

#home p {
  margin: 30px;
}

#links i,
a {
  font-size: 20px;
}

#links ul,
#skills ul {
  list-style-type: none;
  padding: 0;
}

#links ul li,
#skills ul li {
  margin: 5px 0;
}

#projects ul {
  list-style-type: none;
  padding: 0;
}

#projects ul li {
  margin: 10px 0;
}
