@font-face {
    font-family: 'Nugget';
    src: url('NuggetMed.ttf') format('truetype');
    unicode-range: U+0000-0021, U+0023-0026, U+0028-10FFFF;
}
@font-face {
    font-family: 'Nugget';
    src: local('Arial'), local('Helvetica');
    unicode-range: U+0022, U+0027;
} /* nugget you pmo*/

canvas {
    position: fixed;
    top: 0;
    left: 0;
}

body {
    margin: 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    background-color: #1e2030;
    color: rgb(255, 198, 92);
    font-family: 'Nugget', sans-serif;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100vw;
    height: 100vh;
    font-size: 50px;
    background-color: rgba(48, 52, 70, 0.5);
    overflow-x: hidden;
    text-align: center;
    z-index: 1;
}

h1, h2, h5 {
    background-color: rgba(30, 30, 46, 0.5);
    border-radius: 2vh;
    padding: 1%;
}

h1 {
    font-size: 100%;
}

h2 {
    font-size: 80%;
}

h5 {
    font-size: 40%;
}

h6 {
    font-size: 30%;
}

.members {
    display: flex;
    flex-wrap: wrap;
    overflow-wrap: break-word;
    justify-content: center;
    gap: 2vh;
    max-width: 85vw;
    margin: 0 auto 5vh;
}

.member {
    display: flex;
    flex-direction: column;
    width: 34.5vh;
    border-radius: 30px;
    background-color: rgba(30, 30, 46, 0.5);
    backdrop-filter: blur(10px);
}

.quoteicon {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    align-items: center;
    margin: 5%;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.text-container {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 15px;
    text-align: center;
}

.text-container h6, h5 {
    margin: 0;
    padding: 0;
}

.links {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.links a, a {
    text-decoration: none;
    color: white;
}

i {
    margin: 5px;
    cursor: pointer;
}

#particles-js {
    z-index: -1;
}