:root{
  --base-color: #181818;
  --text-color: white;
  --link-color: #bad80b;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: var(--text-color);
    background-color: var(--base-color);
    text-align: center;
}

body.lightTheme {
  --text-color: #1f1f1f;
  --base-color: #f4f5ef;
  --link-color: #001408;
  border-radius: 20px;
}

#theme-switch{
  height: 50px;
  width: 50px;
  padding: 0;
  border-radius: 50%;
  padding: 0;
  border-radius: 50%;
  --bg-color: var(--base-variant);
  display: flex;
  justify-content: center;
  align-items:center;
  position: fixed;
  top: 20px;
  right: 20px;
}
#theme-switch svg{
  fill: var(--primary-color);
}

#theme-switch svg:last-child{
  display: none;
}

.lightTheme #theme-switch svg:first-child{
  display: none;
}

.lightTheme #theme-switch svg:last-child{
  display: block;
}

/*a {
    color:#bad80b;
}*/

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

div a {
    color: var(--link-color);
    background-color: rgba(0, 0, 0, 0.2);
    text-decoration: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.3); 
  }
  
  div a:hover {
    background-color: rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
  }
  
.theme-toggle {
  --size: 2rem;

  background: none;
  border: none;
  padding: 0;

  inline-size: var(--size);
  block-size: var(--size);
  aspect-ratio: 1;
  border-radius: 50%;

  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  outline-offset: 5px;

  & > svg {
    inline-size: 100%;
    block-size: 100%;
    stroke-linecap: round;
  }
    @media (hover: none) {
    --size: 48px;
  }
}

.imageBanner {
  width: 400px;
  height: 200px;
  border-radius: 20px;
  background-position: center;
}