/* 
----- Table Of Contents -----
1. Fonts
   1-1 Montserrat
2. General Style
3. Mobile Size
   3-1 Cover image Style
   3-2 Texts Style
   3-3 Button Style
4. Tablet Size - still in progress
5. Desktop Size - still in progress
*/


/* ------------------ 1. Fonts ------------------ */


/*  1-1 Montserrat  */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

/* ------------------ 2. General Style ------------------ */

* {
    padding: 0;
    margin: 0;
}


/* ------------------ 3. Mobile Size ------------------ */


/* 3-1 Cover image Style */

.cover-img {
    margin-top: 60px;
}


/* 3-2 Texts Style */

.main-text {
    font-size: 1.4rem;
    text-align: center;
    padding: 25px 25px 0 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

.more-text {
    font-size: 1.5rem;
    color: #A6A6A6;
    line-height: 28px;
    text-align: center;
    padding: 25px 13px 25px 0;
}


/* 3-3 Button Style */

.start-btn {
    background-color: #4096DF;
    margin: 0 2rem;
    width: 300px;
    height: 55px;
    border-radius: 16px;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: bold;
    border: none;
}


/* ------------------ 4. Tablet Size ------------------ */

@media(min-width:768px) and (max-width:1023px) {
    .container {
        display: grid;
        grid-template-columns: 50% 50%;
        width: fit-content;
    }
    .cover-img {
        width: 40rem;
        z-index: 100;
        height: 90vh;
        margin: 0 auto;
        margin-top: 2rem;
    }
    img {
        height: 120vh;
        width: 87%;
    }
    .right {
        height: 145vh;
        background-color: #4096DF;
    }
    .main-text {
        font-size: 2rem;
        color: #ffffff;
        text-align: left;
        padding: 0;
        line-height: 35px;
    }
    .more-text {
        font-size: 1.5rem;
        color: #ffffff;
        text-align: left;
        padding-top: 1.5rem;
        line-height: 35px;
    }
    .welcome-texts {
        margin: auto;
        width: 60%;
        margin-top: 13rem;
    }
    .start-btn {
        background-color: #ffffff;
        color: #4096DF;
        font-weight: 900;
        margin-top: 1.2rem;
        margin-left: 7rem;
    }
    .start-btn:hover {
        background-color: #e4e3e3;
    }
}


/* ------------------ 5. Desktop Size ------------------ */

@media (min-width:1023px) {
    .container {
        display: grid;
        grid-template-columns: 50% 50%;
        width: fit-content;
    }
    .cover-img {
        width: 40rem;
        z-index: 100;
        height: 90vh;
        margin: 0 auto;
        margin-top: 2rem;
    }
    img {
        height: 90vh;
    }
    .right {
        height: 100vh;
        background-color: #4096DF;
    }
    .main-text {
        font-size: 2rem;
        color: #ffffff;
        text-align: left;
        padding: 0;
        line-height: 35px;
    }
    .more-text {
        font-size: 1.5rem;
        color: #ffffff;
        text-align: left;
        padding-top: 1.5rem;
        line-height: 35px;
    }
    .welcome-texts {
        margin: auto;
        width: 60%;
        margin-top: 13rem;
    }
    .start-btn {
        background-color: #ffffff;
        color: #4096DF;
        font-weight: 900;
        margin-top: 1.2rem;
        margin-left: 9rem;
    }
    .start-btn:hover {
        background-color: #e4e3e3;
    }
}