:root {
    --fontColor: rgba(247, 247, 247, 0.9);;
}

* {
    margin: 0;
    padding: 0;
    background-color: #37353E;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.pg-container {
    width: 70vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.top-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.company h1 {
    width: 50px;
    font-size: 5rem;
    font-family: "JetBrains Mono", monospace;
    color: var(--fontColor);
    text-wrap: wrap;
}

.company p {
    font-size: 1.5rem;
    color: var(--fontColor);
    font-family: "JetBrains Mono", monospace;
}

.about {
    width: 60%;
}

.about h4 {
    color: var(--fontColor);
    font-size: 2rem;
    font-weight: 300;
    font-family: "Mulish", sans-serif;
}

.about hr {
    border: none;
    height: 2px;
    background-color: rgba(247, 247, 247, 0.301);
}

.about p {
    color: rgba(247, 247, 247, 0.651);
    font-size: 1rem;
    letter-spacing: 1px;
}

.solution-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 5rem;
}

.solution-showcase h3 {
     margin-bottom: 2rem;
     font-size: 2rem;
     color: var(--fontColor);
}


.solution-card {
    width: 580px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: solid 1px var(--fontColor);
    border-radius: 7px;
}

.solution-card .header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.solution-card .header h4 {
    color: var(--fontColor);
    letter-spacing: 1px;
    font-size: 1.5rem;
}

.solution-card .header a {
    color: rgba(247, 247, 247, 0.651);
    letter-spacing: 1px;
    font-size: 1rem;
}

.solution-card .desc {
    padding: 0 5px;
    margin-top: 10px;
    color: rgba(247, 247, 247, 0.651);
    letter-spacing: 1px;
}



@media (max-width: 1420px) {
    .pg-container {
        width: 80vw;
    }
}

@media (max-width: 1240px) {
    .pg-container {
        width: 90vw;
    }
}

@media (max-width: 1120px) {
    .pg-container {
        width: 95vw;
    }
}

@media (max-width: 1060px) {
    .pg-container {
        width: 85vw;
    }

    .company h1 {
        font-size: 4rem;
    }

    .company p {
        font-size: 1.25rem;
    }

    .about h4 {
        font-size: 1.75rem;
    }

    .solution-showcase h3 {
        font-size: 1.75rem;
    }

    .solution-card .header h4 {
        font-size: 1.25rem;
    }

    .solution-card .header a {
        font-size: 0.75rem;
    }

    .solution-card .desc {
        font-size: 0.9rem;
    }   
}


@media (max-width: 940px) {
    .pg-container {
        width: 95vw;
    }
}


@media (max-width: 860px) {
    body {
        height: auto;
    }
    
    .pg-container {
        overflow: auto;
    }
    
    .top-group {
        flex-direction: column;
        margin-top: 2rem;
    }

    .about {
        margin-top: 2rem;
        width: 80%;
    }

    .solution-showcase {
        margin-top: 3rem;
        padding-bottom: 2rem;
    }

    .solution-card {
        width: 80%;
    }
}


@media (max-width: 480px) {
    .about {
        width: 95%;
    }

    .solution-card {
        width: 95%;
    }

    .company h1 {
        font-size: 3rem;
    }

    .company p {
        font-size: 1rem;
    }

    .about h4 {
        font-size: 1.5rem;
    }

    .solution-showcase h3 {
        font-size: 1.5rem;
    }

    .solution-card .header h4 {
        font-size: 1rem;
    }

    .solution-card .header a {
        font-size: 0.7rem;
    }

    .solution-card .desc {
        font-size: 0.8rem;
    }
}


@media (max-width: 440px) {
    .company h1 {
        font-size: 2.5rem;
    }

    .company p {
        font-size: 0.75rem;
    }

    .about h4 {
        font-size: 1.25rem;
    }

    .solution-showcase h3 {
        font-size: 1.25rem;
    }

    .solution-card .header h4 {
        font-size: 0.9rem;
    }

    .solution-card .header a {
        font-size: 0.6rem;
    }

    .solution-card .desc {
        font-size: 0.7rem;
    }

    .solution-card {
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 5px;
        padding-right: 5px;
    }
}


@media (max-width: 400px) {
    .solution-card .header {
        flex-direction: column;
    }
}
