 /* Styling the Body element i.e. Color,
        Font, Alignment */
        body {
            background-color: #444444;
            font-family:roboto;
            text-align: center;
        }
 
        form {
            border-radius: 5px;
            font-family: Roboto;
            background-color: #fff;
            max-width: 750px;
            margin: 50px auto;
            padding: 30px 20px;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        }
 
        .form-control {
            text-align: left;
            margin-bottom: 25px;
            min-width: 95%;
        }
 
        .form-control label {
            display: block;
            margin-bottom: 10px;
        }
 
        .form-control input,
        .form-control select,
        .form-control textarea {
            text-align: justify;
            max-width: 95%;
            border: 1px solid #777;
            border-radius: 2px;
            font-family: inherit;
            padding: 10px;
            display: block;
            width: 95%;
            font-family: roboto;
        }
 
    
        .form-control input[type="radio"],
        .form-control input[type="checkbox"] {
            display: inline-block;
            width: auto;
        }
 
        button {
            background-color: #777777;
            border: 1px solid #777777;
            border-radius: 5px;
            font-family: Roboto;
            font-size: 21px;
            display: block;
            color: white;
            width: 100%;
            padding: 1%;
            margin-top: 50px;
            margin-bottom: 20px;
            cursor:pointer;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        }

        .collumns{
            display: grid;
            grid-auto-flow: column;
            grid-gap: 1px;
            grid-template-columns: repeat(4, 1fr); 
            grid-template-rows: repeat(17, auto);  
            grid-gap: 10px;
            font-family: roboto;
        }

        a{
            text-decoration: none;
            color: white;
        }