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

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1a1a1a;
    text-align: center;
    padding: 20px;
    font-family: 'Raleway', sans-serif;
}

.logo-container {
    max-width: 80%;
}

img {
    max-width: 100%;
    height: auto;
}

.text {
    margin-top: 20px;
    color: #ffffff;
    font-size: 1.5rem;
    max-width: 80%;
    line-height: 1.6;
    font-weight: 400;
}