body{
  font-family: 'IBM Plex Sans KR',
  sans-serif;
}
h1, h2, h3, h4{
  font-family: 'Noto Sans JP',
  sans-serif;
  margin-bottom: 1.8rem;
}
section{
  padding: 5rem 0;
}
svg{
  margin: -1px 0;
}
.navbar{
  background-color: #50514F;
  text-align: center;
  text-transform: uppercase;
}
.navbar-brand{
  font-family: 'Cuprum',
  sans-serif;
  font-size: 1.5rem;
  text-transform: capitalize;
}
.navbar-brand img{
  height: 30px;
}
.carousel-item img{
  max-height: 500px;
  object-fit: cover;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
#hero{
  text-align: center;
  background-image: linear-gradient(to bottom, #247BA0, #70C1B3);
  color: aliceblue;
}
#hero .welcome{
  display: block;
  max-width: 560px;
  margin: 0 auto;
}
#hero h1{
  margin-bottom: 2rem;
}
#hero p{
  margin-bottom: 2rem;
}
#latestproject{
  background-color: #247BA0;
  color: aliceblue;
  text-align: center;
}
.project-show{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.project-show img{
  width: 100%;
  filter: blur(2px);
  -webkit-filter: blur(2px);
  transition: all .5s;
}
.project-show img:hover{
  filter: blur(0);
  -webkit-filter: blur(0);
  transform: scale(1.1);
}
.project-show h2{
  border: 3px solid aliceblue;
  padding: 10px;
}
.project-show h2::before,
.project-show h2::after{
  position: absolute;
  content: '';
  height: 3px;
  width: 30px;
  background-color: aliceblue;
  top: 50%;
}
.project-show h2::before{
  left: -35px;
}
.project-show h2::after{
  right: -35px;
}
.project-show h2{
  position: absolute;
  display: inline-block;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
  transition: all 1s;
}
.project-show h2 a{
  text-decoration: none;
  color: aliceblue;
  text-transform: uppercase;
}
.project-show h2:hover{
  transform: scale(1.2);
}
.company-name{
  margin: 20px 0;
  font-family: 'Cuprum',
  sans-serif;
}
.company-name img{
  height: 60px;
}
footer{
  font-family: 'Raleway',
  sans-serif;
}

#footer{
  text-align: center;
  background-color: #50514F;
  padding: 1rem 0;
  color: rgb(211, 212, 212);
}