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

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  margin: 0;
  width: 100vw;
  background-color: rgb(220, 220, 220);
  background-image: url("../img/default_bg.png");
  background-size: cover;
  font-family: "Roboto Mono";
}

body > background-image {
  filter: blur(25px);
}

#header {
  width: 100%;
  height: 50px;
  line-height: 50px;
  background-color: gray;
  color: black;
  box-shadow: 0px 0px 10px black;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header img {
  margin-right: 20px;
  width: 40px;
  height: 40px;
}

#main-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-bottom: 100px;
}
#main-container > div {
  text-align: center;
  width: 80%;
  min-height: 200px;
  margin: 15 auto;
  padding: 15 15%;
  background-color: gray;
  box-shadow: 0px 0px 10px black;
}
#main-container > div:nth-child(2) {
  padding: 15;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 800px) {
  #main-container > div {
    padding: 15;
  }
  #main-container > div:nth-child(2) {
    flex-direction: column;
  }
  #main-container > div:nth-child(2) > div {
    min-width: 70%;
    margin: 15 auto;
  }
}
#main-container > div:nth-child(2) > div {
  width: 25%;
  height: 100%;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 5px;
}
#main-container > div:nth-child(2) > div img {
  width: calc(100% + 3px);
  height: 100%;
  margin-left: -3px;
}
#main-container > div:nth-child(2) > div > div {
  transition: 0.5s;
  opacity: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 50%;
  left: 25%;
  font-size: 20px;
}
#main-container > div:nth-child(2) > div > div img {
  width: 50px;
  height: 50px;
}

#footer {
  position: fixed;
  width: 100%;
  height: 30px;
  line-height: 30px;
  bottom: 0px;
  text-align: center;
  box-shadow: 0px 0px 10px black;
  background-color: gray;
  color: black;
}

#feedback {
  position: fixed;
  bottom: 7.5px;
  right: 7.5px;
}
@media screen and (max-width: 600px) {
  #feedback {
    margin-bottom: 25px;
  }
  #about {
    margin-bottom: 25px;
  }
}
#feedback:hover {
  cursor: pointer;
  color: rgb(202, 202, 202);
}

#about {
  position: fixed;
  bottom: 7.5px;
  left: 7.5px;
}

.card-all:hover .card:not(:hover) {
	filter: blur(5px);
}
.card {
	transition: 0.5s;
}

#about:hover {
  cursor: pointer;
  color: rgb(202, 202, 202);
}
#name:hover
{
  cursor: pointer;
  color: rgb(202, 202, 202);  
}