main {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-self: center;
}

section {
    margin: 0 auto;
    text-align: center;
    max-width: 90%;
}

h2 {
    font-size: 70px;
    line-height: 1;
    display: inline-block;
    background: linear-gradient(45deg, #fa91f1, #5248a7);
    background: -webkit-linear-gradient(45deg, #fa91f1, #5248a7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 {
    font-size: 20px;
    line-height: 1.4;
}

p {
    margin: 40px 0 25px 0;
    line-height: 1.2;
    color: var(--subtext);
    font-size: 14px;
}

.btns a {
    color: var(--subtext);
    padding: 5px 20px;
    margin: 0 0 5px 0;
    background: var(--secondback);
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    transition: .5s;
}

.btns a:hover {
    color: var(--accentcolor);
    background: var(--fourthback);
    transition: .1s;
}