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

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #111;
    height: 100vh;
}

.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.icons {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.icon-box {
    text-decoration: none;
    color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.icon-box i {
    font-size: 48px;
    margin-bottom: 10px;
}

.icon-box span {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.icon-box:hover {
    transform: translateY(-4px);
    opacity: 0.75;
}

.email {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
}