﻿body {
    background-color:white;
}

.text {
    font-family: "Microsoft YaHei", "Noto Sans SJK", "Source Hans";
    background-color:aliceblue;
    text-align: center;
    font-size: 50px;
    border-radius: 12px;
    margin: 10px;
    border: none;
    padding: 10px;   
}

.bctext {
    font-family: "Microsoft YaHei", "Noto Sans SJK", "Source Hans";
    background-color: aliceblue;
    text-align:left;
    font-size: 50px;
    border-radius: 12px;
    margin: 20px;
    border: none;
    padding: 10px;
}

.texttwo {
    font-family: "Microsoft YaHei", "Noto Sans SJK", "Source Hans";
    background-color:lightblue;
    text-align: center;
    font-size: 50px;
    border-radius: 12px;
    margin: 10px;
    border: none;
    padding: 10px;
}

.ditext {
    text-align: center;
    font-size: 20px;
    margin: 30px;
    border: none;
    background-color:aliceblue;
}

.herdtext {
    text-align: center;
    font-size: 40px;
    color:white;
    margin: 20px;
    border: none;
    background-color:skyblue;
    border-radius: 12px;
}

.input {
    background-color: rgb(225, 255, 226);
    text-align: center;
    font-size: 80px;
    height: 100px;
    color: blue;
    border: none;
    border-radius: 12px;
    margin: 20px;
    width: 95%;    
}

.rzinput {
    background-color: rgb(225, 255, 226);
    text-align:left;
    font-size: 70px;
    color: blue;
    border-radius: 12px;
    border: none;
    margin: 10px;
    width: 70%;
    box-shadow: 0 2px 3px 3px rgb(128, 128, 128);
}

#form1 {
    display: flex;
    flex-direction: column;
    align-content: center;
}

.button {
    background-color: rgb(225, 255, 226);
    text-align: center;
    font-size: 80px;
    color: blue;
    border-radius: 12px;
    border: none;
    width: 100%;
    height: 100px;
    box-shadow: 0 2px 3px 3px rgb(128, 128, 128);
}

.GridView1 {
    border-radius: 12px;
    animation: cutin;
    animation-duration: 1s;
    position: relative;        
    width: 100%;
    top: 0px;
    height: auto;
    font-size: 50px;
    text-align: center;    
}


@keyframes cutin {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0px);
        opacity: 1;
    }
}