div.nav {
    
    position: fixed;
    left: 0;
    right: 0;
    background-color: rgb(230,216,248, 0.9);
    z-index: 10;
}

div.nav div.content {

    display: flex;
    justify-content: space-between;
    padding: 20px;
}

div.nav div.content div.two span {
    font-size: 30px;
    font-weight: 100;
    margin-top: 20px;
    cursor: pointer;
}

div.nav div.content-two {
    /* border: 1px solid blue; */
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    padding-top: 0px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    height: 100vh;
}

div.nav div.content-two a {
    text-decoration: none;
    padding-top: 12px;
    color: black;
    font-size: 20px;
}


div.first-section {
    height: 100vh;
    padding-top: 200px;
    background-color: rgb(170,56,185, 0.4);
}

div.first-section div.content {
    
    width: 70%;
    margin: 0px auto;
}

div.first-section div.content h3 {
    font-size: 30px;
    color: #6535ED;
    font-weight: 600;
}

div.first-section div.content p {
    font-size: 15px;
}

button.all-good {
    margin-top: 20px;
    background-color: #6535ED;
    padding: 10px;
    border-radius: 10px;
    color: white;
}

@media (max-width: 500px) {
    div.first-section {
        height: 800px;
    }
}