@import "bouncing-letters-r.css";
.page-content {
    height: 2050px;
    & .home-section {
        display: flex;
        width: 100%;
    }

    & #section2 {
        flex-direction: column;
        justify-content: center;
        & #lead-message {
            padding: 40px;
        }

        & #lead-message h2 {
            font-weight: 1000;
            margin-bottom: 20px;
        }

        & p {
            margin-top: 20px;
            margin-left: 20px;
        }

        & ul {
            margin-top: 15px;
            margin-left: 20px;
            list-style-type: none;
        }

        & ul li {
            margin-left: 20px;
        }

        & #hire-info {
            display: flex;
            width: 100%;
        }

        & #hire-info div {
            padding: 30px;
            border: solid 1px black;
            border-right: none;
            border-left: none;
        }

        & #hire-info div:first-child {
            border: solid 1px black;
        }
    }

    & #section1.home-section, #section3.home-section {
        flex-direction: column;
        padding-top: 50px;
        gap: 20px;

        & h1 {
            margin-left: 40px;
            margin-bottom: 15px;
            font-size: 32px;
        }
    }
}

#section1.home-section {
    & ul, p {
        margin-left: 80px;
        margin-bottom: 15px;
    }

    & ul li {
        list-style-type: none;
    }
}

.action-link {
    position: relative;
    font: bold 17px Arial;
    border-top-right-radius: 17px;
    border-bottom-right-radius: 17px;
    text-align: right;
    text-decoration: none;
    background-color: var(--main-color-light);
    color: var(--main-color-dark);
    line-height: 40px;
    padding: 4px 8px 4px 8px;
    width: 350px;
    height: 50px;
    border-top: 1px solid var(--main-color-light);
    border-right: 1px solid var(--main-color-light);
    border-bottom: 1px solid var(--main-color-light);
    border-left: 1px solid var(--main-color-light);
    box-shadow: 0px 1px 5px black;
}

.action-link:hover {
    transform: scale(1.5);
}