:root {
    --text-color: #38474e;
    --btn-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    --footer-box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.25);
    --btn-primary-color: #60cefe;
}

.container {
    position: relative;
}

.main__container {
    height: 100vh;
    width: 100%;
}

.main {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 140px;
    margin-left: 50px;
}

.main-left {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-left .left-header {
    font-size: 34px;
    color: white;
    font-weight: 600;
    word-break: keep-all;
}


.main-left a {
    padding: 10px;
    width: 140px;
    border-radius: 100px;
    box-shadow: var(--btn-box-shadow);
    font-weight: 400;
    font-size: 18px;
    background-color: #ffffff;
    width: 220px;
    text-align: center;
    color: black;
}

.main-right {
    display: flex;
    animation: zoomsvgs ease forwards;
    animation-duration: 2s;
}

@keyframes zoomsvgs {
    to {
        transform: scale(1.1);
    }
}

.farendascope-img {
    height: 500px;
    position: relative;
    left: 50px;
    z-index: 1;
}

.sprich-img {
    height: 500px;
    position: relative;
    right: 80px;
}

@media (max-width: 1670px) {
    .main {
        gap: 80px;
    }
    .main-right img {
        display: flex;
        width: 600px;
    }
    .main-left .left-header {
        font-size: 30px;
        color: white;
        font-weight: 600;
        word-break: keep-all;
    }
}

@media (max-width: 1500px) {
    .main {
        gap: 20px;
    }
    .main-right img {
        display: flex;
        width: 550px;
    }
    .main-left .left-header {
        font-size: 25px;
        color: white;
        font-weight: 600;
        word-break: keep-all;
    }
}
@media (max-width: 1380px) {
    .main {
        flex-direction: column;
        gap: 200px;
    }  
    .main-left .left-header {
        font-size: 34px;
        color: white;
        font-weight: 600;
        word-break: keep-all;
    }
}
@media (max-width: 640px) {
    .main__container {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .main {
        width: 100%;
        padding: 0;
        margin: 0;
        overflow-x: hidden;
    }

    .main-left {
        width: 100%;
        text-align: center;
    }

    .main-left span {
        text-align: center;
        margin: auto;
    }

    .main-left a {
        margin: auto;
    }

    .main-left .left-header {
        font-size: 30px;
    }
}
