@import url('https://fonts.googleapis.com/css2?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');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: black;
}

.container{
    display: flex;
    align-items: center;
    margin-top: 250px;
    margin-left: 250px;
}

h1{
    font-family: 'Poppins';
    font-size: 50px;
    color: #ffffff;
    font-weight: 800;
}

h2{
    font-size: 25px;
    color: #10B5BF;
    font-weight: 300;
    font-family: 'Poppins';
}

p{
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    font-family: 'Poppins';
}

button{
    background-color: #10B5BF;
    font-size: 20px;
    color: #ffffff;
    border:none;
    font-family: 'Poppins';
    border-radius: 5px;
    width: 150px ;
    height: 60px;
    margin-top: 100px;
    
}
img{
    display: flex;
    margin-left: 100px;
}