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

body, html {
    height: 100%;
    margin: 0;
    background-color: #fff;
    font-family: 'Hind', sans-serif;
    text-align: center;
}

.main {
    background-image: url('../assets/images/main-bg-2.png');
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
}

.main h1 {
    font-weight: 600;
    color: #1ABC9C;
    font-size: 26px;
    line-height: 37px;
    margin-top: 200px;
}

.main p {
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
	color: #385962;
}

.main a {
    text-decoration: none;
    color: #1ABC9C;
}

.arrow {
    display: none;
}

@media all and (min-width: 768px) {
    .main h1 {
        font-size: 28px;
        line-height: 47px;
    }

    .main p {
        font-size: 20px;
        line-height: 29px;
        width: 50%;
    }
}

@media all and (min-width: 1100px) {
	.main h1 {
        font-size: 28px;
        line-height: 37px;
		margin-top: 230px;
    }

    .main p {
        font-size: 20px;
        line-height: 29px;
        width: 25%;
    }
}

@media all and (min-width: 1400px) {
	.main h1 {
        font-size: 36px;
        line-height: 57px;
    }
    .main p {
		font-size: 24px;
        line-height: 39px;
        width: 25%;
    }
}