@font-face {
  font-family: 'Verdana';
  src: url('font/Verdana.eot');
  src: url('font/Verdana.eot?#iefix') format('embedded-opentype'),
    url('font/Verdana.woff2') format('woff2'), url('font/Verdana.woff') format('woff'),
    url('font/Verdana.ttf') format('truetype'), url('font/Verdana.svg#Verdana') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87);
}

a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.87);
}

/* Navbar Start */

.header {
  width: 100%;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #f2f2f2;
}

.logo {
  height: 80px;
  object-fit: contain;
}

/* Navbar End */

/* Card Start */

.card {
  flex: 0.5;
  height: 100%;
  margin: 0 16px;
  outline: 1px solid #f2f2f2;
  cursor: pointer;
  transition: all 0.2s linear;
}

.card-imgWrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-imgWrapper > img {
  width: 80%;
  object-fit: contain;
}

.card:hover {
  background-color: #fff;
  outline: 0px solid rgba(0, 0, 0, 0);
  transform: scale(1.01);
  box-shadow: 0px 0px 24px -4px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 24px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 24px -4px rgba(0, 0, 0, 0.75);
}

@media only screen and (max-width: 960px) {
  .card {
    margin: 0 8px;
  }
}

@media only screen and (max-width: 600px) {
  .card {
    flex: 1;
    height: 300px;
    margin: 8px 0;
  }
  .card-imgWrapper {
    height: 100%;
  }
}

/* Card End */

/* Main Start */

.main {
  height: calc(100vh - 242px);
  padding: 32px 16px;
}

.main-content {
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
}

@media only screen and (max-width: 600px) {
  .main {
    height: auto;
    padding: 16px 24px;
  }
  .main-content {
    flex-direction: column;
  }
}

/* Main End */

/* Footer Start */
.footer {
  width: 100%;
  padding: 32px 0;
  background-color: #eee;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
}

.footer-links > a {
  flex: 0.25;
  text-align: center;
  font-family: 'Verdana', monospace;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.64);
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.2s linear;
}

.footer-links > a:hover {
  color: rgb(8, 98, 216);
}

.footer-copyright {
  font-family: 'Verdana', monospace;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.38);
}

@media only screen and (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    margin-bottom: 32px;
  }
  .footer-links > a {
    flex: 0.5;
    margin: 8px 0;
  }
}

/* Footer End */
