* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

html {
  height: 100vh;
  width: 100vw;
  display: grid;
  grid-gap: 10px;
  grid-template-rows: 70vh;
  grid-template-columns: 30% auto;
  box-sizing: border-box;
  background-image: url(https://i.pinimg.com/474x/5d/69/e8/5d69e80573e94b1fe01bb8fa7b09c05f.jpg);
  background-color: #cccccc;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;  
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

h1 {
  color:#00BFFF;
}

h2 {
  color: #FF1493;
}

p {
  color:#FF0000;
}

*, *:before, *:after {
  box-sizing: inherit;
}

.column {
  float: left;
  width: 33.3%;
  margin-bottom: 16px;
  padding: 0 8px;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: 8px;
}

.about-section {
  padding: 50px;
  text-align: center;
  background-color: rgb(47,79,79,0.7);
  color: white;
}

.container {
  padding: 0 16px;
}

.container::after, .row::after {
  content: "";
  clear: both;
  display: table;
}

.title {
  color: #00FF00;
}

.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: #555;
}

.image-1 {
  height: 275px
}

.image-2 {
  height: 275px;
}

.image-3 {
  height: 275px
}

@media screen and (max-width: 650px) {
  .column {
    width: 100%;
    display: block;
  }
}