html {
  height: 100%;
  background: linear-gradient(135deg, #000000, #7400FF) fixed;
}

body {
  font-family: "Titillium Web", sans-serif;
  min-height: 100vh;
  color: white;
  margin: 0;
}  

h1 {
  font-size: 50px;
  font-weight: 700; 
  margin-top: 40px;
  margin-bottom: 0px;
  margin-left: 0px;    
}

h2 {
  font-size: 30px;
  font-weight: 700; 
  margin-top: 0;
  margin-bottom: 0px;
  margin-left: 0px;
}

p {
  font-size: 18px;
  font-weight: 400; 
  margin-top: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  color: rgba(255,255,255,0.8);
}

a {
  font-size: 18px;
  font-weight: 400; 
  color: #eca72c;
  cursor: pointer;
  margin-left: 0px;
  transition: opacity 0.25s;
  text-decoration: none;
}

a:hover {
  color: #eca72c;
  opacity: 0.8;
}

a:active {
  color: #eca72c;
  opacity: 0.5;
}

.container {
  display: flex;
  height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.static-col {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 40px;
}

.scroll-col {
  flex: 1;
  overflow-y: auto;
  margin-top: 60px;
  padding-top: 40px;
}

.social-bar {
  margin-top: 20px;
}

.social-bar a {
  font-size: 24px;
  margin-right: 20px;
  color: white;
  transition: color 0.3s;
}

.social-bar a:hover {
  color: #eca72c;
}

.menu {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu a {
  color: white;
  font-size: 20px;
  font-weight: 600;
  transition: color 0.3s;
}

.menu a:hover {
  color: #eca72c;
}

.menu a.selected {
  color: #eca72c;
}

@media (max-width: 768px) {
  body {
    overflow: auto;
  }

  .container {
    flex-direction: column;
    height: auto;
    gap: 0;
  }

  .static-col, .scroll-col {
    padding-left: 20px;
    padding-right: 20px;
  }

  .scroll-col {
    overflow-y: visible;
    margin-top: 0;
  }
}