body {
    background-color: rgb(75, 75, 75);
    margin: 0;
    align-items: center;
    color: white;
}

.about {
    margin: 5vh;
    font-size: 2.5vh;
    line-height: 2.5vh;
    color: rgb(129, 129, 129);
}

.about > a {
    text-decoration: none;
    color: white;
}

.container {
    width: 35vh;
    height: 35vh;
    margin-left: 40%;
    margin-top: 25vh;
    background-color: rgb(49, 48, 48);
    border-radius: 25%;
    animation: container 1.5s;
    display: none;
}

.text {
    line-height: 3vh;
    text-align: center;
}

.result {
    animation: appear 1.5s;
    text-align: center;
    font-size: 10vh;
    color: white;
}

h1 {
    padding-top: 12vh;
    font-size: 10vh;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

h2 {
    font-size: 5vh;
    font-family: 'Roboto', sans-serif;
    line-height: 5px;
}

p {
    font-size: 3vh;
    font-family: 'Roboto', sans-serif;
    line-height: 3px;
}

#name {
    text-align: center;
    margin-top: 9vh;
    width: 15vh;
    height: 10vh;
    border-radius: 5px;
    border: none;
    color:white;
    background-color: rgb(75, 75, 75);
    font-size: 10vh;
    font-family: 'Roboto', sans-serif;
}

#number {
    text-align: center;
    width: 10vh;
    height: 5vh;
    padding-top:0;
    border-radius: 5px;
    border: none;
    background-color: rgb(75, 75, 75);
    font-size: 5vh;
    color:white;
    font-family: 'Roboto', sans-serif;
}

#chinese {
    text-align: center;
    width: 5vh;
    height: 5vh;
    border-radius: 5px;
    border: none;
    background-color: rgb(75, 75, 75);
    color: white;
    font-size: 3vh;
    font-family: 'Roboto', sans-serif;
}

@keyframes container {
    25% {
        transform: scale(0.5);
        opacity: 0.5;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes appear {
    25% {
        transform: scale(0.5);
    }

    50% {
        transform: scale(2);
    }
}

@media screen and (max-width: 600px) {
    .container {
        margin-left: 20%;
    }
}
