 @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
 @import url('https://fonts.googleapis.com/css2?family=Palanquin+Dark:wght@400;500;600;700&display=swap');

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: "Poppins", sans-serif;
 }

 body {
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(to right, #302e2e, #343333);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
 }

 .container {
     display: flex;
     row-gap: 15px;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     height: 70vh;
     width: 100%;
     overflow: hidden;
 }

 .container img {
     height: 250px;
     width: 500px;
 }

 .container h1 {
     font-size: 60px;
     color: #fff;
     font-weight: 600;
     text-align: center;
     font-family: "Poppins", sans-serif;
 }

 .container h2 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

 .container p {
     font-size: 13px;
     font-weight: 500;
     color: #fff;
     text-align: center;
 }

 hr {
     border: 0.5px solid #fff;
     width: 35%;
     margin: 5px auto;
 }

 @media screen and (max-width: 300px) {
     .container header {
         font-size: 50px;
     }
 }