.resource-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction:column;
    gap:15px;
}

.resource-list li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    background: #141414;
    display: block;
    font-size: 1.2em;
    transition: 0.2s ease;
}

.resource-list li a:hover{
    background: #ff5100;
    color: white;
} 

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(-45deg, #1a1a1a, #222222, #2d2d2d, #282828);
  background-size: 400% 400%;
  animation: gradientFlow 15s ease infinite;
  text-align: center;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.home-button {
  position: absolute; 
  top: 15px;
  left: 15px;      
  width: 50px;     
  height: 50px;
  background-color: #d4aa00; 
  color: #FFFFFF;
  font-size: 1.8em;
  border-radius: 50%;   
  font-weight: 700;
  text-align: center;    
  text-decoration: none;   
  line-height: 50px;  
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
  z-index: 1000;            
  display: inline-block;
}

.home-button:hover {
  transform: scale(1.1);
  background-color: #b88f00;
}

.home-button:active {
  transform: scale(0.9);
  background-color: #a37d00;
}

.container {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: left;
    justify-content: flex-start;
    gap: 2em;
    background-color: #1a1a1a;
    border-radius: 2em;
    padding: 4em 3em;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 800px;
}
  
.title, h1 {
    font-size: 3em;
    color: white;
}

.cool-line {
    width: 100%;
    height: 5px;
    border-radius: 1em;
    border: none;
    background: linear-gradient(to right, #ff2200, #ffcc00);
  }
