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

h1 {
    font-size: 4rem;
    font-weight: 400;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
}

p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.8);
}

.social-icons {
    margin-top: 15px;
}

.icon {
    margin: 0 10px;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.icon:hover {
    color: lightsteelblue;
}
