html, body{
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: #131313;
    font-family: 'Poppins', sans-serif;
}

.footer {
    background-color: #19233A;
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-family: Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
    align-self: start;
    margin-top: 10px;
}

.title {
    position: relative;
    left: 50%; 
    transform: translateX(-50%);
    color: white;
    font-family: Arial;
    font-weight: bold;
    font-size: 50px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 15px;
}

.footer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.footer a {
    text-decoration: none;
    color: white;
    white-space: nowrap; 
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .footer p {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .footer a {
        display: inline-block;
    }
}

.content {
    flex: 1 0 auto;
}