const FormContainer = styled.div`

  height: 100vh;

  width: 100vw;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 1rem;

  align-item: center;


  .brand{

    display: flex;

    align-item: center;

    gap: 1rem;

    justify-content: center;

    img{

      height: 5rem;

    }

    h1{

      color: white;

      text-transform: uppercase;

    }

  }

`;


인도인 유튜브 보니까 react할 때 이런식으로 짜던데 

``안에 부분만 잘라서 css파일에 옮겨보니까 태그 안에 태그 넣으니까 에러나더군요.

그런데 왜 ``안에서는 저렇게 쓸 수 있는 것인가요?