* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

.hero {
    width: 100%;
    height: 100vh;
    background: url("./purple.png") center / cover no-repeat;
    position: relative;
}

.hello {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: purple;
    font-style: italic;
    font-weight: 900;
    font-size: 3rem;
}

.skills,
.software,
.together {
    text-align: center;
    color: purple;
    font-family: Arial, Helvetica, sans-serif;
}

.skills {
    font-size: 50px;
}

.software {
    padding-top: 100px;
    padding-bottom: 0;
    font-size: 50px;
}

.together {
    font-size: 50px;
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: purple;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 26px;
    height: 26px;
    filter: invert(1);
}

.software-box {
    padding: 2rem;
    border-radius: 1rem;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.software-box img {
    height: 52px;
    margin-bottom: 0.75rem;
}

.software-box p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.contact {
    color: white;
    background-color: purple;
    width: 200px;
    height: 50px;
    font-size: 30px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 2rem;
    border: 0;
}

.footer {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    background-color: purple;
}

.text-center {
    padding-bottom: 70px;
}

.footer-icons {
    gap: 1.5rem;
    /* space between icons */
}

.icon-link {
    padding: 0.75rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: invert(1);
}

.icon-link:hover .social-icon {
    transform: scale(1.15);
    opacity: 0.85;
}