@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(13, 111, 76);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Inconsolata', monospace;
    padding: 40px;
}

.container {
    text-align: center;
    max-width: 100%;
}

/* Logo class for when actual logo image is added */
.logo {
    max-width: 700px;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

.text {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .text {
        font-size: 14px;
    }
}
