* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 
  text-decoration: none;
  list-style: none;
  color: black;
}
 
:root {
  --color-Ellipse-1: #C8AAD3;
  --color-Ellipse-2: #799DCB;
  --color-Ellipse-3: #7C38BD;
  --color-Ellipse-4: #BD6DF2;
  --color-Ellipse-5: #A696C7;
}
 
/* main */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 100px;
}

.container-main {
    max-width: 1440px;
    width: 100%;
    padding: 120px 100px;
    display: flex;
    gap: 52px;
    flex-direction: column;
}

.container-main > h1 {
    font-size: 32px;
    font-weight: 400;
}

.container-main-txt {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.container-main-txt > h1 {
    font-size: 32px;
    font-weight: 400;
}

.box-1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.box-1 > h1 {
    font-size: 22px;
    font-weight: 500;
}
.box-1 > p {
    font-size: 20px;
    font-weight: 400;
    line-height: 161.5%;
}
.box-1 > a {
    color: black;
    font-size: 20px;
    font-weight: 400;
    text-decoration: underline;
}

.box-1 > a:hover{
    color: blue;
}

.box-2 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

@media screen and (max-width:1455px) {
  main {
    margin-top: 6.87vw;
  }

  .container-main {
    padding: 8.24vw 6.87vw;
    gap: 3.57vw;
   }
}

@media screen and (max-width:710px) {
    .box-2 {
        display: flex;
        flex-direction: column;
    }

    .box-2 > img {
        width: 100%;
    }
}

@media screen and (max-width:501px) {
    .container-main {
        padding-top: 19.96vw;
        gap: 8.98vw;
    }

    .container-main > h1 {
        font-size: 6.38vw;
    }
    
    .container-main-txt {
        gap: 5.98vw;
    }
    
    .container-main-txt > h1 {
        font-size: 6.38vw;
    }
    
    .box-1 {
        gap: 2vw;
    }
    
    .box-1 > h1 {
        font-size: 4.39vw;
    }
    .box-1 > p {
        font-size: 3.99vw;
        line-height: 161.5%;
    }
    .box-1 > a {
        font-size: 3.99vw;
    }
}