@import "compass/css3";

body {
    background: #E6E1E1;
    padding-left: 30px;
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  background-color: #2196F3;
  padding: 10px;
}
.grid-item {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 20px;
  font-size: 30px;
  text-align: center;
}

.hovicon {
    display: inline-block;
    font-size: 45px;
    line-height: 80px;
    cursor: pointer;
    margin: 10px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    text-decoration: none;
    z-index: 1;
    color: black;
}

/* Effect 6 */
 .hovicon.effect-6 {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 1);
    -webkit-transition: background 0.2s, color 0.2s;
    -moz-transition: background 0.2s, color 0.2s;
    transition: background 0.2s, color 0.2s;
}
.hovicon.effect-6:hover {
    background: rgba(255, 255, 255, 1);
    color: black;
}
.hovicon.effect-6:hover i {
    color: black;
}
.hovicon.effect-6:hover:before {
    -webkit-animation: spinAround 2s linear infinite;
    -moz-animation: spinAround 2s linear infinite;
    animation: spinAround 2s linear infinite;
}






input[type=text]{
  width: 40%;
  height: 120px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid grey;
  border-radius: 4px;
  background-color: grey;
  resize: none;
  font-family: "verdana", Times, serif;
}

input[type=text1]{
  width: 10%;
  height: 50px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid #f8f8f8;
  border-radius: 4px;
  background-color: #f8f8f8;
  resize: none;
  font-family: "verdana", Times, serif;
}

input[type=date]{
  width: 13%;
  height: 50px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid #f8f8f8;
  border-radius: 4px;
  background-color: #f8f8f8;
  resize: none;
  font-family: "verdana", Times, serif;
}

ul {
  font-family: "verdana", Times, serif;
}

input[type=submit] {
  font-family: "verdana", Times, serif;
  font-weight: bold;
  background-color: #f3f2f2;
  border: 1px solid #f3f2f2;


}

.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: white;
   color: white;
   text-align: right;
}



.items {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-top: -10px;
}
.items .item {
	flex: 1 0 200px;
  box-sizing: border-box;
  background: #E6E1E1;
  color: #ffffff;
  text-align:center;
  padding: 20px;
	margin-left: 50px;
	margin-top: 10px;
	margin-right: 60px;
}
@media (min-width: 410px) {
  .items .item {
    max-width: calc(50% - 10px);
  }
}
@media (min-width: 620px) {
  .items .item {
    max-width: calc(33.33333% - 10px);
  }
}
@media (min-width: 830px) {
  .items .item {
    max-width: calc(25% - 10px);
  }
}
@media (min-width: 1040px) {
  .items .item {
    max-width: calc(20% - 10px);
  }
}
@media (min-width: 1250px) {
  .items .item {
    max-width: calc(16.66667% - 10px);
  }
}
@media (min-width: 1460px) {
  .items .item {
    max-width: calc(14.28571% - 10px);
  }
}
@media (min-width: 1670px) {
  .items .item {
    min-width: calc(12.5% - 10px);
  }
}



.content {
  max-width: 1100px;
  margin: auto;
  padding: 10px;
}