*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    min-height: 100vh;
}
.container{
    position: relative;
    width: 800px;
    
    background: #fff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border-radius: 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.container>img{
    border-radius: 10px;
    margin: 10px;
    width: 250px;
}
.container h1{
    text-align: center;
    font-weight: 700;
    margin: 10px;

    font-size: 40px;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(
        to right, #FF0000,#fa3535, #f95959,
        #fc7a7a);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
.container h2{
    text-align: center;
    font-weight: 700;
    margin: 10px;
    text-transform: capitalize;

    font-size: 24px;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(
        to right, #054090,#78AECF, #0567AE,
        #054090);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
.container h3{
    text-align: center;
    font-weight: 700;
    background: linear-gradient(
        to right, #054090,#0567AE, #78AECF,
        #FF0000);
    color: #f5f5f5;
    border-radius: 3px;
    padding: 5px;
    margin: 3px;
    border: #000 1px solid;
 
}


@media only screen and (max-width: 600px) {
    body{
        background: #fff;
    }
    .container{
      width: 90%;
      box-shadow: none;
      border-radius: 0px;
    }
  }