/* Set body styles */
body {
    background-color: #222;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    margin: 0;
}
  
  /* Set header styles */
header {
    display: flex;
    justify-content: flex-end;  /* align to right */
    align-items: center;  /* center vertically */
    height: 80px;
    background-color: transparent;
    position: fixed;
    width: 90%;
    top: 0;
    z-index: 1;
}

.gr-1 {
    background-image: linear-gradient(-45deg, #f7b500, #b620e0, #32c5ff);
}

.gradient {
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about {
  position: fixed;
  top: 40%;

}
  
.about h2 {
    font-size: 3em;  /* increase font size */
    text-align: center;
    margin-bottom: 50px;
    color: blue;  /* set color to blue */
}
  
.about p {
    font-size: 1.2em;
    line-height: 1.8em;
    text-align: justify;
}
  
  /* Set navigation menu styles */
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
  
nav ul li {
    margin-right: 20px;
}
  
nav ul li:last-child {
    margin-right: 0;
}
  
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}
  
nav ul li a:hover {
    color: #8fdaff;
}
  
  /* Set section styles */
section {
    padding: 50px;
}
  
section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}
  
section p {
    font-size: 18px;
    line-height: 1.5;
}
  
.projects {
    padding-top: 100px;
}

  /* Set project styles */
.project {
    background-color: #1f1f1f;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    width: 50%;
    height: 80px;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.5);
}
  
.project img {
    width: 5%;
    height: auto;
    margin-bottom: 20px;
}
  
.project h2 {
    position: relative;
    left: 60px;
    top: -90px;
    font-size: 24px;
    margin-bottom: 10px;
}
  
.project p {
    position: relative;

    top: -90px;
    font-size: 24px;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

#discord-profile {
    position: fixed;
    top: 40%;
    right: 50px;
    transform: translateY(-50%);
    background-color: #1f1f1f;
    color: #fff;
    border-radius: 15px;
    padding: 30px;
    width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
}
  
#discord-profile h3 {
    margin-top: 0;
    font-size: 24px;
}
  
#discord-profile a {
    background-color: #7289da;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    padding: 15px;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
}
  
#discord-profile a:hover {
    background-color: #5a68a5;
}

footer {
    position: absolute;
    bottom: 0;
  }