/* 
      .--..--..--..--..--..--.
    .' \  (`._   (_)     _   \
  .'    |  '._)         (_)  |
  \ _.')\      .----..---.   /
  |(_.'  |    /    .-\-.  \  |
  \     0|    |   ( O| O) | o|
   |  _  |  .--.____.'._.-.  |
   \ (_) | o         -` .-`  |
    |    \   |`-._ _ _ _ _\ /
    \    |   |  `. |_||_|   |
    | o  |    \_      \     |     -.   .-.
    |.-.  \     `--..-'   O |     `.`-' .'
  _.'  .' |     `-.-'      /-.__   ' .-'
.' `-.` '.|='=.='=.='=.='=|._/_ `-'.'
`-._  `.  |________/\_____|    `-.'
   .'   ).| '=' '='\/ '=' |
   `._.`  '---------------'
           //___\   //___\
             ||       ||
             ||_.-.   ||_.-.
            (_.--__) (_.--__)
       

 Insert all your glorious CSS styles below! */

 /* bangers-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Bangers';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/bangers-v25-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

 /* comic-relief-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Comic Relief';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/comic-relief-v2-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

 body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0b132b, #1c2541);
    color: #fefefe;
    font-family: 'Roboto', sans-serif;
    background-attachment: fixed;
    background-size: cover;
    background-image: url(images/metro.jpg);
 }

 html {
    font-size: clamp(16px, 1.2vw + 1rem, 22px);
 }

 h1, h2, p {
    margin: 0 0 1rem 0;
 }

h1 {
    font-family: 'Bangers', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: #ff7f50;
    text-align: center;
    letter-spacing: 2px;
}

h2 {
    font-family: 'Bangers' sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    color: #F7D85C;
    margin-top: 1rem;
}

p {
    line-height: 1.6;
    color: #FFFFFF;
    font-size: 1em;
    font-family: 'Comic Relief', sans-serif;
}

ol { 
    padding-left: 1.4em;
    list-style: decimal;
}

ul {
    padding-left: 1.4em;
    list-style: square;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.member {
    background: #5C63F7;
    border-radius: 10px;
    text-align: center;
    padding: 12px;
    width: clamp(200px, 25%, 300px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.member:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 55px #FAF800;
    background-color: #00b4d8;
    color: #fff;
}

.member img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 4px solid #FFFFFF;
}

header {
    text-align: center;
    padding: 3rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 3px solid #ffd700;
}

.container {
    width: 960px;
    margin-right: auto;
    margin-left: auto;
    padding: 10px 0 30px 0; 
    text-align: right;
    position: relative;
}

.logo {
    position: absolute;
    z-index: 100;
    left: 0;    
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 40px;
    background-image: none;
     no-repeat 10px 10px;
    padding-top: 200px 0;
}

nav ul li {
    background-color: #ff7f50;
    padding: 10px 15px;
    border-radius: 5px;
}

nav ul li a {
    color: #7A3D3D;
    text-decoration: none;
    font-weight: bold;
}

nav ul li:hover {
    background-color: #ffcc00;
    transition: 0.3s;
}

.cta {
    background-color: #ffcc00;
    border: none;
    color: #000;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.cta:hover {
    background-color: #00b4d8;
    color: #fff;
}

@media (max-width: 1000px) {
  .member { width: calc(48% - 16px); }
}

@media (max-width: 600px) {
  .member { width: 100%; }
  .member img { height: 200px; }
}

@keyframes logo {
    from {
        transform: rotate(0) scale(.5);
        left: 120%;
    }

    50% {
        transform: rotate(-720deg) scale(.5);
        left: 0;
    }

    to {
        transform: rotate(0) scale(1);
    }
}

.logo {
    animation: logo 3s;
}