@charset "utf-8";

.red{
    color: red;
}
.blue{
    color: blue;
}
input[name="nickname"]{
    width:100px;
}
input[name="email"]{
    width:200px;
}
input[name="goiken"]{
    width:300px;
}

/*アンケート一覧*/
   table,th,td{
     border: 1px solid black;
    }
    table{
        margin: 0 auto;
        width: 100%;
        max-width: 800px;
        border-collapse: collapse;
    }

    form{
        margin: 0 auto;
        width: 100%;
        text-align: center;
    }

    th, td {
        text-align: center;
        padding: 8px;
    }
    thead{
        background-color: rgb(200, 200, 255);
    }
    
    tbody tr:nth-child(even){
        background-color: #f7f7ff;

    }

    caption{
        font-size: 1.5rem;
    }

