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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    text-align: center;
    padding: 50px 20px;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #4A90E2; /* primary color */
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.contact, .socials {
    margin: 20px 0;
}

.contact a, .socials a {
    color: #4A90E2;
    text-decoration: none;
}

.contact a:hover, .socials a:hover {
    text-decoration: underline;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.socials a {
    background-color: #4A90E2;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.socials a:hover {
    background-color: #357ABD; /* a darker shade for hover effect */
}