@font-face {
  font-family: Eliot Lord;
  src: url(Fonts/Eliothand2-Regular.otf);
}

@font-face {
  font-family: Devil;
  src: url(Fonts/DevilBreeze.ttf);
}

body {
  opacity: 100%;
  font-family: Eliot Lord;
  font-size: 1.8dvw;
  margin: 0;
  user-select: none;
  -webkit-user-drag: none;
  cursor: url(img/background/cursors/Cursor.svg),
    url(img/background/cursors/pointer1.png), pointer;
}
a:hover,
img[onClick],
div[onclick],
button[onclick],
.concol:hover {
  cursor: url("img/background/Pointer.svg"),
    url("img/background/cursors/Finger%20cursor.png"), pointer;
}

.conlogo {
  font-family: Devil;
  src: url(Fonts/DevilBreeze.ttf);
  font-size: 6dvh;
  margin: auto;
  width: 30%;
}

#containercon {
  width: 100%;
  text-align: center;
}

.conrow {
  width: 100%;
  line-height: 50px;
  background-color: white;
  border-color: white;
  border: 2px solid white;
}

.concol {
  height: 50px;
  border-color: white;
  border: 2px solid white;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: lightgrey;
}

.connectionscontainer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: auto;
  width: 40%;
}

.connectionscontainercategories {
  margin: auto;
  width: 40%;
}

button {
  width: 40%;
  background-color: darkgrey;
  margin: auto;
  font-family: Eliot Lord;
  font-size: 3dvh;
}

button:hover {
  cursor: url(img/background/Pointer.svg),
    url(img/background/cursors/Pointer1.png);
}

.shake {
  animation: horizontal-shaking 0.5s;
}

@keyframes horizontal-shaking {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}

@media screen and (max-width: 480px) {
  .connectionscontainer {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin: auto;
    width: 100%;
  }

  .connectionscontainercategories {
    margin: auto;
    width: 100%;
  }

  button {
    width: 100%;
    background-color: darkgrey;
    margin: auto;
    font-family: Eliot Lord;
  }
}
