/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
}

.container {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-text {
    font-size: 2em;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
}

.sub-text {
    font-size: 1.5em;
    font-weight: 300;
    color: #555555;
}

.main-image {
    height: 300px;
}