body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.hrClass{
    margin: 10px 0; 
    border: none; 
    border-top: 1px solid #ddd;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    width: 90%;
}

.image {
    width: 250px;
    height: auto;
}

.image img {
    width: 120px;
    height: auto;
}

.text {
    padding-left: 50px;
    font-size: 12.8px;
}

.text h1 {
    font-size: 100px;
    margin: 0;
}

.text h2 {
    font-size: 24px;
    margin: 0 0 20px 0;
}

.text h3 {
    margin: 0 0 0px 0;
}


.text p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.button {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #00c17b;
    color: #00c17b;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s;
}

.button:hover {
    background-color: #00c17b;
    color: #fff;
}