html, body{
    margin: 0;
    top: 0;
    background-color: #1C1B29;
    
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: white;
}

.header{
    position: absolute;
    top: 0;
    width: 100vw;
    max-width: 100%;
    color: white;
    background-color: #1C1B29;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gradient{
    /* background-color: pink; */
    z-index: 0;
    position: fixed;
    top: 0;
    height: 20rem;
    width: 100vw;
    max-width: 100%;
    background-image: url('../assets/grad.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.pfp{
   margin-top: -2rem;
    height: 15rem;
    border-radius: 30rem;
    width: 15rem;
    background-size: cover;
    background-image: url('https://media.discordapp.net/attachments/873911460055642152/1005768012793659412/bot.png');
}


.tile{
    display: flex;
    justify-content: space-between;
    align-items: center;
   width: 30rem;
   border-radius: 5px;
   padding-left: 1rem;
   padding-right: 1rem;
   background-color: black;
}

.tile img{
    height: 3rem;
}

.tile p{
    font-size: 1.2rem;
    margin-left: 2rem;
}