/*whole main section*/
main {
    display: flex;
    justify-content: center;
    flex-direction: column;

    background-color: transparent;

    width: 100svw;
    min-height: 100svh;

    padding: 5rem 2rem;

    overflow:  hidden;
}

/*big heading*/
main h1{
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/*paragraph*/
main p{
    font-size: 1.25rem;
    font-weight: 300;

    width: 30%;

    margin: 0 0 2rem 3rem;
}

/*svg in background*/
#background-svg{
    position: absolute;
    top: 1%;
    right: -20%;

    fill: var(--secondary);

    opacity: 0.2;

    width: 100%;
    height: 100svh;

    z-index: -10000;
}

