@import url("https://fonts.googleapis.com/css2?family=Bangers&display=swap");

body {
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: "Bangers", cursive;
}

.wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.left-column {
  flex: 1;
  background-color: black;
  background-image: url("meme.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.right-column {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(252, 208, 136, 0.6);
}

.right-column-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 80px;
  height: 80px;
}

.links {
  display: flex;
  justify-content: center;
}

.links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin: 10px;
  padding: 10px;
  border: 1px solid #2e3138;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s;
}

.links a,
.links a:visited,
.links a:active {
  background-color: transparent;
}

.links a:hover {
  background-color: rgb(252, 208, 136, 1);
}

.img-src-link {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2e3138;
  text-decoration: none;
}

.img-src-link .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 5px;
  border-radius: 50%;
  background: linear-gradient(#8a8a8a, #4d4d4d);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.25) inset;
  cursor: pointer;
}

.img-src-link .icon:hover {
  background: linear-gradient(#6a6a6a, #3d3d3d);
}

@media only screen and (min-width: 768px) {
  .wrapper {
    flex-direction: row;
  }

  .left-column {
    flex: 1;
  }

  .right-column {
    flex: 1;
  }
}
