@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}
body{
    background-color: black;
}

.header-page {
    background-image:url('images/background-img.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.image {
    padding: 10px 0px 20px 100px;
    padding-bottom: 0px !important;
}

.image img {
    width: 140px;
    height: 60px;
}

.content {
    text-align: center;
    padding: 0px 20px 170px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding-bottom: 0px;
}

.doctor img {
    width: 500px;
}

.coming-soon {
    padding: 80px 10px 0px 10px;
}

.para1 p {
    background: linear-gradient(90deg, #eb8231, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 20px;
    padding-top: 32px;
}
.doctor1 img{
    width: 100%;
}

.soon h1 {
    font-size: 80px;
    background: linear-gradient(90deg, #eb8231, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

}

.dr-fungy h2 {
    padding-top: 15px;
    font-size: 45px;
    color: #C4652C;
}

.dr-fungy p {
    font-size: smaller;
    font-weight: bold;
    color: #C4652C;
}

@media screen and (max-width: 500px) {
    .content {
        flex-direction: column;
    }
    .doctor img{
        display: none;
    }
    
}
@media screen and (min-width:501px){
    .doctor1 img{
        display: none;
    }
}

@media screen and (max-width:768px) {
     
    .soon h1 {
        padding-top: 0;
    }

    .coming-soon {
        padding-top: 0;
        padding-bottom: 30px;
    }

    .image {
        padding: 20px;
    }
    .doctor img{
        width: 100%;
    }
    
}

@media screen and (max-width:900px) {
    .soon h1 {
        font-size: 50px;
    }
}