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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1e1e1e;
    color: #ccc;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    padding: 20px;
    background-color: #282c34;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    width: 100%;
    padding: 0 10px;
}

.left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.logo {
    width: 300px;
}

.right {
    flex: 2;
    color: white;
    text-align: left;
    margin-left: 200px;  /* Adds space between the logo and the right-side text */
    padding-right: 0px; /* Adds more space to the right side */
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

pre {
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 5px;
    color: #61dafb;
    font-family: monospace;
    font-size: 1rem;
    overflow-x: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
}

code {
    color: #61dafb;
}

footer {
    margin-top: auto;
    padding: 20px;
    background-color: #1e1e1e;
    color: white;
    text-align: center;
}
