a:link {
  color: red;
}
  
a:visited {
   color: green;
}

a:hover {
    color: hotpink;
}
.page {
    display: grid;
    grid-template-rows: 10px 400px 100px;
}
p1{
    color: blue;
    background-color: gray;
    font-family: "Times New Roman", Times, serif;
}


  .site-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .row1 {
    display: flex;
    flex-direction: row;
    flex-basis: 100%;
    flex: 1;
  }

  .row2 {
    display: flex;
    flex-direction: row;
    flex-basis: 100%;
    flex: 1;
  }

  .col1 {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
    gap: 10px;
    column-gap: 10px;
  }

  .col2 {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
  }

button {
    background-color: #156218;
    color: white;
    padding: 15px 32px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
  }