*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: white;
    text-align: center;
    font-family: 'Rubik', sans-serif;
}

body{
    background: rgb(0, 0, 0);
    height: 100vh;
    background-image: url("img/background.png");
    background-repeat: repeat;
    background-size: cover;
}

.underline{
    text-decoration: underline;
}

.page-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card{
    background: rgba(5,4,2,0.5);
    height: 575px;
    width: 500px;
    position: absolute;
    margin-top: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-container{
    position: relative;
}

.card-title{
    font-size: 4em;
}

.motd{
    font-size: 1em;
}

.member-list{
    line-height: 1.5;
}



#gangstermusic{
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}