@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500;500&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: white;

    background-image: url("https://cdn.discordapp.com/attachments/739865905613373491/1003347570808062124/Andimaru-de.png");
}

.link {
    color: white;
    text-decoration: inherit;
}

.link:hover {
    color: red;
    cursor: pointer;
    text-decoration: inherit;
}

.card {
    height: 200px;
    width: 400px;

    margin: 0 auto;
    position: relative;
    top: 60px;
    padding: 40px 40px 60px;

    border-radius: 20px 20px;

    animation: slideInFromRight 1s ease-in;

    background-color: #3c4043;
}

.card input {
    width: 200px;
    height: 1px;

    padding: 10px;

    margin-top: 30px;
    margin-bottom: 10px;

    border-radius: 5px;
    border-color: #3c4043;
    border-style: hidden;
}

.success-button {
    background-color: #24e324;
    color: white;

    width: 80px;
    height: 30px;

    border-style: hidden;
    border-radius: 5px;
}

.success-button:hover {
    background-color: #1ea002;

    transition-duration: 0.2s;
}

.success-button:active {
    background-color: #0a5800;

    transition-duration: 0.2s;
}

.fail-button {
    background-color: #f53131;
    color: white;

    width: 120px;
    height: 60px;

    border-style: hidden;
    border-radius: 5px;
    padding: 10px;
}

.fail-button:hover {
    background-color: #dc1010;

    transition-duration: 0.2s;
}

.fail-button:active {
    background-color: #af0000;

    transition-duration: 0.2s;
}

.twitch-button {
    background-color: #cd00ff;
    color: white;

    border-style: hidden;
    border-radius: 5px;
    padding: 30px;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.twitch-button:hover {
    background-color: #a617ce;

    transition-duration: 0.2s;
}

.twitch-button:active {
    background-color: #76168a;

    transition-duration: 0.2s;
}

.navbar {
    overflow: hidden;
    background-color: #333;
}

.navbar a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.navbar a:hover {
    background-color: #76168a;
}

.navbar a.active {
    background-color: #a617ce;
    color: white;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 3.5s;
    animation: fadein 0.5s, fadeout 0.5s 4.5s;
}

b {
    font-weight: 500;
}

h1 {
    font-weight: 400;
}

h1 .bold {
    font-weight: 500;
}

h2 {
    font-weight: 400;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}