* {
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
}

.hero {
    width: 100%;
    height: 150vh;
    background: #d36f6d;
    position: relative;
}

.doos {
    width: 500px;
    min-height: 500px;
    padding: 50px;
    background: whitesmoke;
    text-align: center;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px;
    color: #555;
}

.doos h2 {
    font-size: 18px;
    margin-bottom: 20px;

}

.doos h1 {
    font-size: 70px;
    margin-bottom: 20px;
    color: red;
    font-weight: 500; 
}

.doos h1 span {
    font-size: 22px;
    color: #555;
}

.doos b {
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.doos p {
    font-size: 14px;
    margin-bottom: 20px;
}

.doos button {
    display: block;
    margin: 30px auto;
    outline: 0;
    background: orangered;
    cursor: pointer;
    padding: 12px 40px;
    border-radius: 30px;
    box-shadow: 0 10px 10px;
}

.doos input {
    display: block;
    background:aliceblue;
    margin-top: 150px;
    outline: 0;
    padding: 10px 10px;  
    cursor: pointer;
    border-radius: 100px;
}



.dom {
    color: red;
}