* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

@font-face {
    font-family: 'Mondwest';
    src: url('mondwest.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --company-font: 'Mondwest', sans-serif;
}

body {
    background: url('wp1887998-phineas-and-ferb-wallpapers.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.main-content {
    flex: 1;
}

.footer {
    width: 100%;
    background-color: #000;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-name {
    font-size: 3.5rem;
    color: #fff;
    letter-spacing: 2px;
    font-family: var(--company-font);
}

address {
    font-style: normal;
    line-height: 1.5;
    color: #fff;
    font-size: 1rem;
    text-align: right;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .company-name {
        font-size: 2.5rem;
    }
    
    address {
        text-align: center;
        font-size: 0.9rem;
    }
} 