* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fefaf0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 80px;
}

.icon-text-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.olive-icon {
    width: min(30vw, 200px);
    max-width: 200px;
    transition: transform 0.2s ease;
}

.olive-icon:hover {
    transform: scale(1.02);
}

.olive-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.olive-text {
    font-size: 5vw;
    transition: transform 0.2s ease;
    color: #909B50;
    white-space: nowrap;
}

.olive-text:hover {
    transform: scale(1.2);
}

.olive-text::selection {
    background: #C7CC62;
    color: #3E721D;
}

.olive-footer-ewww-feet {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #909B50;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
}

.footer-text {
    text-align: left;
}

.footer-icon {
    color: white;
    font-size: 1.6rem;
    transition: transform 0.2s, color 0.2s;
    text-decoration: none;
}

.footer-icon:hover {
    color: #e0e0e0;
    transform: scale(1.1);
}