body{
      overflow: hidden;
}
.main {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(85, 11, 85);
}

.container {
    height: 340px;
    width: 520px;
    border: 2px solid purple;
    background-color: white;
    border-radius: 14px;
    text-align: center;
}

.container h1 {
    font-weight: bold;
    margin-top: 2rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.container p {
    margin-top: 2rem;
    font-size: 22px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-left: 18px;
    margin-right: 18px;
}

.container .line {
    margin-top: 3rem;
    margin-left: 40px;
    margin-right: 40px;
}

.container .btnn {
    margin-left: 20rem;
    margin-top: 1rem;
    padding: 15px;
    border-radius: 25px;
    border: none;
    font-size: 17px;
    background-color: rgb(206, 69, 206);
    color: white;
    font-family: sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: all 1s ease;
}

.container .btnn:hover {
    background-color: rgb(83, 22, 83);
    color: white;
}


@media (max-width:600px) {
    .container{
          height: 380px;
          width: 350px;
          text-align: center;
    }
    .container .btnn{
          display: block;
    margin: 1rem auto 0 auto;
    }
}