body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    background-color: #121212;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

main {
    padding: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.icon-links a {
    margin: 0 10px;
}

.icon-links img {
    width: 130px;
    height: auto;
    transition: transform 0.2s ease;
}

.icon-links img:hover {
    transform: scale(1.1);
}
