body {
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center;
    color: #333;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
}
.content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}
h1 {
    color: white;
    text-align: center;
    font-size: 3em;
    margin-bottom: 20px;
}
p {
    color: white;
}
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
footer .social {
    margin-top: 10px;
}
nav {
    background-color: #333;
    color: #fff;
    padding: 10px;
    width: 150px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
nav ul li {
    margin-bottom: 10px;
    position: relative;
    transition: transform 0.2s ease;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    display: block;
    padding: 10px;
}
nav ul li a:hover {
    color: #ccc;
    transform: translateX(5px);
}
nav ul li a::after {
    content: '→'; 
    position: absolute;
    right: 0; 
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
nav ul li a:hover::after {
    opacity: 1;
    transform: translateX(5px); 
}