* {
    font-family: 'pretendard';
    margin: 0;
    cursor: none;
}
.mainimg{
    filter: brightness(80%);
    position: fixed;
}
.con1{
    height: 100vh;
    width: 100%;
    background-image: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) ),url(../src/build.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: white;
    overflow: hidden;
}
.con2{
    height: 80vh;
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
}
.castitle{
    font-size: 20rem
}
.cast{
    margin-top: 9rem;
    width: 70%;
    height: 7rem;
    background-image: linear-gradient(45deg, #93a5cf 0%, #d1dfd7 100%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
    border-radius: 20px;
    transition: all 0.3s ease;
  }
  .cast:hover{
    transform: translate(0px, -7px);
  }
  .cast h1{
  }
  .cast a {
    font-size: 1.4rem;
    color: white;
    transition: all 0.3s ease;
  }
  .cast a:hover{
    transform: scale(1.1);
  }