* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #282C34;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  background-color: #282C34;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.hbtn {
  color: #00B18B;
  background-color: #282C34;
  border: 0;
  font-size: 20px;
  padding: 10px 20px;
}

.hbtn:hover {
  color: #008670;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  width: 100%;
  padding-top: 70px;
  overflow: hidden;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
  background-color: #282C34;
  border-radius: 10px;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
}

.textsection {
  max-width: 800px;
  color: #DCE1E8;
  font-size: 28px;
}

.name {
  color: #00B18B;
}

i {
  color: #00B18B;
}

.pic {
  position: relative;
}

.profile {
  width: 200px;
  height: auto;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  background-color: #00B18B;
  max-width: 1656px;
  max-height: 2208px;
  object-fit: contain;
}

.hello, .name, .job, .description {
  margin: 10px 0;
}

.aboutme {
  margin: 10px 0;
  font-size: 20px;
}

.button {
  color: #fff;
  background-color: #00B18B;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #008670;
}

iframe {
  border: none;
  width: 100%;
  z-index: 2;
  position: relative;
}

.music {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
  color: #00B18B;
}

.spotifyplayer{
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  width: 100%;
  padding-top: 19px;
  overflow: hidden;
  font-size: 35px;
}

.music-container {
  width: 100%;
  position: relative;
}

.iframe-wrapper {
  position: relative;
  width: 100%;
}

.music-iframe {
  border: none;
  width: 100%;
  position: relative;
  z-index: 2;
}

.overlay-text {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  z-index: 1;
  color: #00B18B;
}


footer {
  color: white;
  background-color: #282C34;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 100%;
  position: relative;
  bottom: 0;
  left: 0;
}

.projects-title {
  color: #00B18B;
}

.projects {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.projects-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.projects-item {
  flex-basis: calc(33.33% - 60px);
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0px 0px 0px 0 #0000002c;
  transition: 0.3s ease box-shadow;
}

.projects-item:hover {
  box-shadow: 0px 0px 5px 0 #0000002c;
}

.icon {
  width: 70px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.projects-info h1 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: #00B18B;
}

.projects-info h2 {
  font-size: 1.3rem;
  line-height: 2rem;
  font-weight: 500;
}

.projects-info p {
  color: #DCE1E8;
}

.centerfooter {
  text-align: center;
}

.add {
  color: #00B18B;
}

.links {
  color: #008f70;
}

.timeline-section {
  text-align: center;
  width: 100%;
  box-shadow: 0px 0px 5px 0 #0000002c;
}

.timeline {
  position: relative;
}

.timeline-event {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.timeline-event .timeline-content {
  max-width: 250px;
  text-align: left;
}

.timeline-event h2 {
  color: #00B18B;
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.timeline-event p {
  color: #DCE1E8;
  font-size: 1rem;
}

.timeline-event:before {
  content: '';
  position: absolute;
  top: 50%;
  height: 2px;
  width: calc(100% - 40px);
  background-color: #00B18B;
  transform: translateY(-1px);
}

.timeline-event.left:before {
  right: 100%;
}

.timeline-event.right:before {
  left: 100%;
}

.timeline-event.left .timeline-content {
  margin-right: auto;
  margin-left: 20px;
}

.timeline-event.right .timeline-content {
  margin-left: auto;
  margin-right: 20px;
}

.contact-form {
  background-color: #282C34;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
}

.contact-form h2 {
  color: #00B18B;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}

.contact-form label {
  display: block;
  color: #DCE1E8;
  margin-bottom: 5px;
  font-size: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: #1C1F24;
  color: #DCE1E8;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00B18B;
}

.contact-form button {
  background-color: #00B18B;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #008f70;
}

.closed{
 color: #F04D44;
 font-weight: 600;
}

.edit{
 color: #FFC420;
 font-weight: 600;
}

.create{
  color: #6DC953;
 font-weight: 600;
}
