﻿
html,
body {
  overflow-x: hidden;
}
:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}

.banner {
  max-width: 1200px;
  min-width: 500px;
  margin-top: -2px;

  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
}

.resource-section {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
.resource-title {
  font-size: 1.5rem;
  color: #000666;
  font-family: "Franklin Gothic", sans-serif;
  font-weight: bold;
  word-break: keep-all;
  hyphens: none;
}
.resources-text {
  font-family: "Franklin Gothic Book", sans-serif;
  word-break: keep-all;
  hyphens: none;
}

.resource-icon {
  width: 180px;
  height: 180px;
}

/* mobile responsive*/
@media only screen and (max-width: 800px) {
  .resource-icon {
    width: 180px;
    height: 180px;
  }

  .resource-title {
    font-size: 1rem;
    color: #000666;
    font-family: "Franklin Gothic", sans-serif;
    font-weight: bold;
    font-weight: bold;
  }

  .resources-text {
    font-family: "Franklin Gothic Book", sans-serif;
    font-weight: bold;
    word-break: keep-all;
    hyphens: none;
    font-size: 0.8rem;
  }
  .resource-section {
    display: flex;
    gap: 10px;
    justify-content: left;
    align-items: center;
  }
}

