@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');
body {
    margin: 0;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    background: #ff1c91;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    overflow-y: hidden;
}

.title {
    font-family: 'Roboto', cursive;
    top: 2vh;
    font-size: 40px;
    width: 100%;
    color: rgba(0, 0, 0, 1);
    position: absolute;
    text-align: center;   
}

.title .subTitle {
    font-size: 25px;
}


/* Name Badge */

html,
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#name-card-container {
    position: fixed;
    bottom: 0px;
    height: 38px;
    width: 100%;
    display: flex;
    justify-content: center;
}

#name-card {
    display: flex;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 38px;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 2px rgba(0, 0, 0, 0.2);
}

#loading {
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotate360 {
    -webkit-animation: rotate360 4s linear infinite;
    -moz-animation: rotate360 4s linear infinite;
    animation: rotate360 4s linear infinite;
}

@-ms-keyframes rotate360 {
    from {
        -ms-transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate360 {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate360 {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#name-card>div.dark-background {
    background: #1d1e22;
    padding: 0 10px 0 10px;
    height: 100%;
    color: #fff;
}

#name-card>div.light-background {
    background: #fff;
    padding: 0 10px 0 10px;
    height: 100%;
}

#name-card span.emoji {
    font-size: 18px;
    margin-right: 6px;
}

#name-card a {
    text-decoration: none;
}

#name-card a:hover {
    text-decoration: underline;
}

#name-card a:visited {
    text-decoration: none;
}

#name-card div.dark-background a {
    color: #fff;
}

#name-card div.light-background a {
    color: #000;
}

@media only screen and (max-width: 600px) {
    #name-card {
        font-size: 1.4vw !important;
        height: 10vh;
    }
    .title {
        font-size: 70px !important;
    }
    .subTitle {
        font-size: 30px !important;
    }
}

@media only screen and (max-width: 400px) {
    #name-card {
        font-size: 3.2vw !important;
        height: 10vh;
    }
    #name-card span.emoji {
        font-size: 3.4vw;
        margin-right: 3px;
    }
    #name-card>div.light-background {
        padding: 0 5px 0 5px;
    }
    #name-card>div.dark-background {
        padding: 0 5px 0 5px;
    }
    .title {
        font-size: 70px !important;
    }
    .subTitle {
        font-size: 30px !important;
    }
}