html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

html {
    background-color: #070707;
}

.bg-image {
    background-image: url('DotMatrixBackgroundForInfinite.png');
    background-repeat: repeat;
}

span {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.pfp {
    width: 12rem;
    clip-path: circle();
}


.buttons-div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 25%;
    gap: 15px;
}

.wrapper-div {
    width: 100%;
    height: 100%;
}

a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4rem;
    width: 24rem;
    font-size: 2rem;
    border-radius: 50px;
    border: 0;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-decoration: none;
}

.twitch-button {
    background-color: #a970ff;
    color: black;
}

.youtube-button {
    background-color: #ff0000;
}

.tiktok-button {
    background-color: #fe2c55;
}

.kick-button {
    background-color: #53fc18;
    color: black;
}

.discord-button {
    background-color: #5865f2;
}

.no-animation {
    animation: none !important;
}


@media screen and (max-width: 600px) {
    a {
        animation: smallerScreenSmall 1s forwards;
    }
}

@media screen and (min-width: 601px) {
    a {
        animation: smallerScreenWider 1s forwards;
    }
}

@keyframes smallerScreenSmall {
    0% { width: 24rem; }
    100% { width: 20rem; }
}

@keyframes smallerScreenWider {
    0% { width: 20rem; }
    100% { width: 24rem; }
}