:root {
    --backgroundblue: rgba(46, 61, 194, 0.69);
    --backgroundpurple: rgba(116, 62, 204, 0.63);
    --backgroundpink: rgba(214, 62, 189, 0.63);
    --siteblack: #494648;
    --bluedropshadow: rgba(46, 61, 194, 0.10);
    --pinkdropshadow: rgba(167, 18, 143, 0.10);
    --Purple-Drop-Shadow: rgba(116, 62, 204, 0.10);
}

* {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
    background-color: #F7F7F7;
    color: #686868;
}

a {
    text-decoration: none;
    color: inherit;
}

h1 {
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: var(--misconception-gradient-2, linear-gradient(86deg, rgba(46, 61, 194, 0.69) 51.48%, rgba(167, 18, 143, 0.63) 96.59%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 32px;
    font-weight: 600;
}

h3 {
    font-size: 40px;
}

p {
    font-size: 18px;
    color: #757074;
}

.imagetop {
    display: grid;
    grid-template-columns: repeat(auto-fill, 330px);
    grid-template-rows: 350px 0 0 0 0 0 0 0;
    overflow-y: hidden;
    column-gap: 10px;
    justify-content: center;
    margin-top: 20px;
    margin-left: -200px;
    margin-right: -200px;
}

.image {
    padding: 10px;
}
.image img {
    width: 290px;
    height: 300px;
    object-fit: cover;
    border-radius: 48px;
}


.header {
    margin: 30px;
}

.flexbox {
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, 400px);
    justify-content: center;
}

.misconception {
    margin: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 480px;
    min-height: 360px;
    padding: 36px;
    border-radius: 36px;
    background: #F7F7F7;
    box-shadow: 20px 20px 20px 0px var(--pinkdropshadow);
}

.blue {
    box-shadow: 20px 20px 20px 0px var(--bluedropshadow);
}

.purple {
    box-shadow: 20px 20px 20px 0px var(--Purple-Drop-Shadow, rgba(116, 62, 204, 0.31));
}
.misconception p {
    margin-bottom: 10px;
    font-weight: 600;
}

.assumption {
    padding-top: 20px;
}

.about {
    max-width: 500px;
    margin: 32px;
}

.about h2 {
    background: var(--misconception-gradient-2, linear-gradient(86deg, rgba(46, 61, 194, 0.69) 51.48%, rgba(167, 18, 143, 0.63) 96.59%));
    background-clip: text;
    -webkit-background-clip: text-decoration;
    -webkit-text-fill-color: transparent;
}
.about p {
    color: #494648;
    font-size: 24px;
}

.backtohome {
    padding-top: 18px;
    font-weight: 800;
    text-decoration: underline;
    color: #828282;
}

.learnmore h3{
    text-align: right;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: underline;
    text-decoration-color:  var(--backgroundpurple);
    background: var(--misconception-gradient-2, linear-gradient(86deg, rgba(46, 61, 194, 0.69) 51.48%, rgba(167, 18, 143, 0.63) 96.59%));
    background-clip: text;
    -webkit-background-clip: text-decoration;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 600px){
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 28px;
    }

    .flexbox {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .misconception {
        box-shadow: 10px 10px 10px 0px var(--Pink-Drop-Shadow, rgba(167, 18, 143, 0.21));
        margin: 10px;
        max-width: 300px;
    }

    .blue {
        box-shadow: 10px 10px 10px 0px var(--bluedropshadow);
    }

    .purple {
        box-shadow: 10px 10px 10px 0px var(--Purple-Drop-Shadow, rgba(116, 62, 204, 0.31));
    }
}

@media screen and (max-width: 500px){
    h1 {
        font-size: 36px;
    }
}