@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@700&family=Source+Sans+Pro:wght@900&display=swap");

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  margin-top: 100px;  /*   can we make full page center vertically?  */
}

.content-wrapper {
  text-align: center;
}

h1 {
  color: black;
  font-family: 'Roboto', sans-serif;
  font-size: 2em;
  font-weight: 200;
  letter-spacing: -0.04em;
}

p {
  color: rgb(0, 150, 255);
  font-family: 'Roboto', sans-serif;
  font-size: 1.5em;
  margin: 15px 0;
}


.divider {
  color: black;
}

.icon {
  color: black;
  padding: 15px;
  border-radius: 50%;
}

.icon:hover {
  cursor: pointer;
  background-color: rgb(0, 150, 255);
}

.container{
  position: relative;
  overflow: hidden;
}


.container:hover .overlay{
  opacity: 1;
  transform: scale(1);
}

.overlay{
  position: absolute;
  background-color: rgba(0,150,255,0.7);
  width: 100%;
  height: 100%;
  top: 0;
  transform: scale(1.3);
  opacity: 0;
  transition: transform .4s ease 0s;
}

.overlay span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Roboto', sans-serif;
  font-size: 2em;
  color: #fff; 
}

.container img{
  width: 100%;
  height: auto;
  transition: transform .8s ease;
}

.container:hover img{
  transform: scale(1.1);
}

a:link {
  color: rgb(0, 150, 255);
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: rgb(0, 150, 255);
  background-color: transparent;
  text-decoration: none;
}

a.button {
  width: 40%;
  height: auto;

  background-color: transparent;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  overflow: hidden;
  outline: none;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
