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

body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #556c82;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

header {
    width: 100%;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.main h1 {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 300;
    color: transparent;
    text-transform: uppercase;
    text-shadow: 1px 1px rgba(255, 255, 255, 0.1), -1px -1px rgba(0, 0, 0, 0.6);
    opacity: 0.3;
}

.links {
    display: flex;
    gap: 1em;
    margin-top: 1em;
}

.links a {
    text-decoration: none;
}

.links img {
    height: 4em;
    width: 4em;
    opacity: 0.15;
    transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
}

.links img:hover {
    opacity: 0.2;
    filter: brightness(1.2);
}

@media (max-width: 768px) {
    .main h1 {
        font-size: 8vw;
    }

    .links img {
        height: 3.5em;
        width: 3.5em;
    }
}