body {
    align-items: center;
    background-color: #333;
    color: white;
    display: flex;
    flex-flow: column wrap;
    font-family: Montserrat, sans-serif;
    height: 100vh;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100vw;
  }
  
  .container {
    display: flex;
    flex-flow: row wrap;
  }
  
  .container div {
    align-items: center;
    display: flex;
    flex-flow: column wrap;
    height: 200px;
    justify-content: center;
    margin: 2px;
    padding: 15px;
    text-align: center;
    transition: all 0.25s ease;
    width: 200px;
  }
  
  h1 {
    font-size: 48px;
    color: #2fc18c;
  }
  
  .container div:nth-of-type(1) {
    background-color: #2fc18c;
    color: #333;
  }
  
  .container div:nth-of-type(2) {
    background-color: #006dfb;
  }
  
  .container div:nth-of-type(3) {
    background-color: #41197f;
  }
  
  input {
    border: 1px solid #333;
    margin: 10px 0;
    padding: 5px;
    text-align: center;
    width: 200px;
  }
  
  input:hover {
    border: 1px solid #2fc18c;
  }
  
  input:focus {
    border: 1px solid #006dfb;
    outline: 2px solid #006dfb;
  }
  
  .tech {
    transform: translateY(-20px);
  }