﻿/* style */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #ffffff;
    background: url('ocean.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

/* center text */
.container {
    text-align: center;
    margin: auto;
}

.container h1 {
    font-size: 4rem;
    margin: 0;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.container p {
    font-size: 1.5rem;
    color: #cccccc;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

/* footer */
footer {
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0);
    text-align: center;
}

.footer-links a {
    color: #8e8e8e;
    margin: 0 1rem;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #454545;
}