/* Global styles */
* {
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  /*max-width: 900px;*/
  margin: 0;
  padding: 0;
  background-color: #1e1e2f;
  color: #ffffff;
  line-height: 1.6;
}

a {
  color: #66ccff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
header {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
}

header p {
  font-size: 1.2rem;
  color: #cccccc;
}

nav {
  margin-top: 1rem;
}

nav a {
  margin: 0 1rem;
  font-weight: bold;
  color: #66ccff;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffcc66;
}

/* Section Headings */
h2 {
  font-size: 1.8rem;
  border-bottom: 2px solid #444;
  padding-bottom: 0.5rem;
  margin-top: 3rem;
}

/* Project cards */
.project {
  background-color: #2e2e40;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.project:hover {
  transform: translateY(-5px);
}

.project h3 {
  margin-top: 0;
  color: #ffcc66;
}

.media-row {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.media-row img,
.media-row video {
  width: 48%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Contact section */
#contact a {
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #888888;
}

.read-more-btn {
  background: transparent;
  border: none;
  color: #66ccff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-left: 0.3rem;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: #ffcc66;
}

/* Create two unequal columns that floats next to each other */
.container {
  /*float: left;*/
  display: flex;
  align-items: flex-start;
  /*padding: 10px;*/
}

.left {
  position: sticky;
  top: 0px;
  height: calc(100vh - 0px);
  overflow-y: auto;
  padding: 2rem;
  background-color: #1e1e2f;
  width: 30vw;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */

}

.left::-webkit-scrollbar {
  width: 0px;
  background: transparent; /* Chrome/Safari */
}

.right {
  width: 70vw;
  padding: 2rem;
}

/* Clear floats after the columns
.row:after {
  content: "";
  display: table;
  clear: both;
}*/

#myBtn {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #2e2e40;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}


#myBtn:hover {
  background-color: #555;
}
