/* public/css/styles.css */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: white; 
    height: 100vh;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
    background: linear-gradient(to bottom, #00008b, #add8e6);
}

.main-content {
    flex-grow: 1; 
    display: flex;
    justify-content: center; 
    align-items: center;     
    padding: 20px;
}

.content-wrapper {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3); 
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    width: 100%;
}

.logo-side {
    margin-right: 30px;
}

.logo {
    font-size: 100px; 
    line-height: 1;
}

.app-name {
    margin: 0 0 10px 0;
    font-size: 2.5em;
}

.tagline {
    font-size: 1.2em;
    opacity: 0.8;
    margin-bottom: 20px;
}

.description-text p {
    margin: 0 0 15px 0;
    line-height: 1.4;
    font-size: 0.9em;
}

.site-footer {
    background-color: rgba(0, 0, 0, 0.2); 
    padding: 10px 20px; 
    text-align: center;
    font-size: 0.8em;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.small-logo {
    font-size: 1em;
}

.copyright {
    opacity: 0.7;
}

@media (max-width: 650px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .logo-side {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.inside-logo{
	max-width: 200px;
}