/* Ensure html and body take the full height */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Set background image for the whole page and make it responsive */
body {
    background-image: url('images/backgrounds.jpg');
    background-size: cover;  /* Make background image cover the entire screen */
    background-position: center;  /* Center the background image */
    background-attachment: fixed; /* Fix the background image in place when scrolling */
    font-family: 'Roboto', cursive;
    color: #fff;
    display: flex;
    justify-content: center;  /* Align the content in the center horizontally */
    align-items: center;  /* Align the content in the center vertically */
    height: 100vh;  /* Full height of the viewport */
}

/* Styling for container */
.container {
    text-align: center;
    padding: 20px;
    z-index: 1;  /* Ensure content is visible above the background */
}

/* Logo styling */
.profile img {
    width: 280px;
    height: 224px;
}

/* Spacer between logo and links */
.spacer {
    margin: 20px 0;
}

/* Styling for links */
.links a {
    display: inline-block;
    margin: 10px;
    padding: 10px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    font-size: 18px;
    color: #000;
}

.links a:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Footer styling */
footer {
    margin-top: 40px;
}

footer p {
    font-size: 20px;
}

/* Social Media icons */
.social-media a {
    margin: 10px;
    display: inline-block;
}

.social-media img {
    width: 30px;
    height: 30px;
}
