* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    overflow: hidden;
    z-index: -1;
}
  
.shape {
    position: absolute;
    filter: blur(1vw);
    opacity: 0.5;
    box-shadow: 0 0 2vw 1vw currentColor;
    animation-duration: 9s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
  
/* Circle, square, rectangle styles */
.shape.circle { border-radius: 50%; }
.shape.square { border-radius: 0; }
.shape.rectangle { border-radius: 10px; }
  
/* Floating animations */
@keyframes float-up-right { 0% { transform: translate(0, 0); } 100% { transform: translate(3vw, -4vw); } }
@keyframes float-up-left  { 0% { transform: translate(0, 0); } 100% { transform: translate(-4vw, -3vw); } }
@keyframes float-down-right { 0% { transform: translate(0, 0); } 100% { transform: translate(4vw, 3vw); } }
@keyframes float-down-left { 0% { transform: translate(0, 0); } 100% { transform: translate(-3vw, 4vw); } }
  
.float-up-right  { animation-name: float-up-right; }
.float-up-left   { animation-name: float-up-left; }
.float-down-right { animation-name: float-down-right; }
.float-down-left { animation-name: float-down-left; }
  

.container {
    background-color: #00000000;
    padding: 20px;
    border-radius: 8px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    max-width: 1000px;
    width: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0 auto;
}

.advisors-heading h1 {
    font-family: akiraExpanded;
    font-size: 3.4rem;
    margin: 6% auto;
}

h1 {
    text-align: center;
    color: #cdcdcd;
    margin-bottom: 20px;
}

.advisor {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    /* border: 1px solid #ddd; */
    border-radius: 8px;
    background-color: #76767624;
}

.advisor-photo {
    flex: 0 0 150px;
    margin-right: 20px;
}

.advisor-photo img {
    width: 100%;
    border-radius: 8px;
}

.advisor-info {
    flex: 1;
}

.advisor-info h2 {
    margin: 0;
    font-family: 'Inter';
    font-size: 1.5em;
    color: #bebdc8;
}

.advisor-info p {
    margin: 5px 0;
    color: #aeaeae;
}

.advisor-info a {
    color: #e67e22;
    text-decoration: none;
}

.advisor-info a:hover {
    text-decoration: underline;
}

/* Media Queries for Responsiveness */

/* For tablets and smaller desktops */
@media (max-width: 768px) {
    .advisors-heading h1 {
        font-size: 2.5rem;
        margin: 10% auto;
    }

    .container {
        padding: 5%;
    }

    .advisor {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .advisor-photo {
        flex: 0 0 120px;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .advisor-info h2 {
        font-size: 1.3em;
    }
}

/* For mobile devices */
@media (max-width: 480px) {
    .advisors-heading h1 {
        font-size: 2rem;
        margin: 15% 5%;
    }

    .advisor {
        padding: 10px;
    }

    .advisor-photo {
        flex: 0 0 100px;
    }

    .advisor-info h2 {
        font-size: 1.2em;
    }

    .advisor-info p {
        font-size: 0.9em;
    }
}