@font-face {
  font-family: 'Hack';
  src: url('./HackNerdFont-Regular.ttf')
}
body {
  background-color: #282828;
  font-family: 'Hack';
  color: #ebdbb2;
}
#bar {
  background-image: url('Bar.png');
  background-size: 100% 100%;
  display: flex;
  width: 100%;
  height: 100px;
  justify-content: space-evenly;
  border-radius: 25px;
  
}

#bottom {
  height: auto;
  width: 100%;
  position: fixed;
  z-index: 10;
  bottom: 0;
}

#pc {
  height: 200px;
  margin-left: 80%;
}

.icon {
  transition: transform 0.3s ease;
}

.icon:hover {
  transform: scale(1.5);
  filter: drop-shadow(0 0 5px #000000);
}

#content {
  padding: 1px;
  border-radius: 25px;
  text-align: center;
  margin-left: 10%;
  margin-right: 10%;
  margin-bottom: 200px;
  top: 0;
}

#content img {
  height: 200px;
  width: auto;
}

p {
  font-size: 125%;
}

img {
  max-width: 100%;
  max-height: auto;
}

a {
  color: #458588;
}
