@import url('https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css');

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(to bottom, #EDE7F6, #311B92);
}

.header, .footer {
    color: white;
    padding: 20px 0;
}

.footer .highlighted-link {
    margin-left: auto;
}

.header .container, .footer .container {
    text-align: center;
}

.logo {
    height: 80px;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.highlighted-link {
    display: inline-block;
    border-radius: 5px;
    padding: 10px 20px;
}

.highlighted-link a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.highlighted-link a:hover {
    color: #EDE7F6;
    text-decoration: none;
}

.container.mt-5 {
    max-width: 800px;
    margin: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,.05);
    padding: 20px;
    background-color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header .container, .footer .container {
        flex-direction: column;
    }
    
    .footer .highlighted-link {
        margin-left: 0;
        margin-top: 10px; /* Add margin on top for better separation */
    }

    .footer {
        justify-content: center;
    }

    .logo {
        height: 60px; /* Reduce logo size for smaller screens */
    }
}
