body {
    background-color: peachpuff;
}
.one {
    text-align: center;
    font-size: 40px;
}


.two {
    background-color: purple;
    height: 500px;
    word-spacing: 50px;
}
#one {
    margin-top: 10x;
}
h1 {
    text-align: center;
}
.three {
    text-align: center;
    font-size: 20px;
}
input[type=text], select, textarea {
    width: 100%; 
    padding: 12px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    box-sizing: border-box; 
    margin-top: 6px; 
    margin-bottom: 16px; 
    resize: vertical 
  }
  
  
  input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  
  input[type=submit]:hover {
    background-color: #45a049;
  }
  
  
  .container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
  }
  button {
      background-color: seashell;
      border-radius: 30px;
      width: 130px;
      height: 50px;
  }
  button:hover {
      background-color: steelblue;
      border-radius: 30px;
      width: 150px;
  }
  #left {
      word-spacing: normal;
      text-align: center;
      padding-top: 100px;
      font-size: 40px;
      color: white;
      animation: move 2s;
  }
  #right {
      word-spacing: normal;
      text-align: center;
      padding-top: 120px;
      font-size: 30px;
      color: peachpuff;
      animation: scroll 2s;
  }
  @keyframes move {
      0% {
          font-size: 10px;
      }
      100% {
          font-size: 40px;
      }
  }
  @keyframes scroll {
      0% {
          transform: rotate(360deg);
      }
      100%{
          transform: rotate(0deg);
      }
  }
  .column {
    float: left;
    width: 35%;
    margin-bottom: 16px;
    padding: 0 8px;
  }
  
  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
   
  }
  
  
  .container {
    padding: 0 16px;
     background-color: lightyellow;
  }
  
  
  .container::after, .row::after {
    content: "";
    clear: both;
    display: table;
  }
  
  .title {
    color:gray;
  }
  
  .button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
  }
  
  .button:hover {
    background-color: rgb(177, 89, 89);
  }
  #about {
      font-size: 40px;
      margin: 10px;
      color: rgb(44, 57, 241);
  }