main {
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #333333;
    margin-top: 60px;
    background-image: url(../img/Merna_TD_2.png), url(../img/BG_Net.png);
    background-size: 70vh, cover;
    background-repeat: no-repeat;
    background-position: bottom left calc(50% + 80px), center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100px;
    column-gap: 220px;
    text-shadow: -2px 2px 4px #000;
}

main .main-intro h1 {
    font-size: 7.4rem;
    line-height: 1.1;
}

main p {
    font-size: 1.8rem;
    line-height: 1.75;
    max-width: 500px;
}

main a {
    margin-top: 30px;
    font-size: 1.8rem;
    display: block;
    text-align: center;
    background-color: var(--site-color-01);
    padding: 10px 20px;
    width: fit-content;
}

main a:hover{
    background-color: var(--site-color-01-hover);
}

main .main-intro {
    padding-bottom: 8vh;
}

/* MOBILE VERSION */

@media only screen and (max-width: 600px){
    main .main-intro {
        padding-bottom: 8vh;
    }

    main .main-intro h1 {
        font-size: 5.4rem;
        line-height: 1.1;
        text-align: center;
    }

    main p {
        text-align: center;
        padding: 0 20px;
        line-height: 2.5;
    }

    main a {
        margin: 30px auto;
    }
}