body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif; /* Elegant and modern font */
    background: #f7f7f7; /* Light grey background */
}

.container {
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

h1 {
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
}

p {
    color: #555;
    font-weight: 300;
}

.links {
    margin-top: 20px;
}

.link-item {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.link-item i {
    margin-right: 8px;
}

.link-item:hover {
    background-color: #eaeaea;
    color: #000;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
}
