```css id="vy1ohd"
/* Local Montserrat fonts */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.ttf') format('ttf');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.logo-container {
    position: relative;
    height: 100vh;
}

.logo-container img {
position: absolute;
    left: 50%;
    top: 33%;
    transform: translate(-50%, -50%);
    max-width: 800px; 
    width: 80%;
    height: auto;
}

.contact-info {
    position: fixed;
    right: 40px;
    top: 67%;
    transform: translateY(-50%);
    text-align: right;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: 300;
}

@media (max-width: 768px) {
    .logo-container img {
        max-width: 280px;
    }

    .contact-info {
        right: 20px;
        bottom: 20px;
        font-size: 0.8rem;
    }
}
```

