@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    padding: 0 10px;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background: #00ddff;
}

h1 {
   color: rgb(2, 2, 53);
   font-size: 60px;
   justify-content: center;
   margin-bottom: 100px;
   font-style: italic;
   font-weight: bold;
   font-family: cursive;


}

.box{
    background-color: rgb(255, 0, 0);
    border: 10px solid rgb(245, 108, 108);
    width: 110px;
    height: 120px;
    margin-left: 90px;
}

.btn {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 166, 255);
    font-size: 20px;
    font-weight: bold;
    font-style: inherit;
    margin-left: 70px;
    margin-top: 50px;
    height: 50px;
    width: 150px;
    border: none;
    border-radius: 20px;
}
.btn:hover{
   background-color: orange;
}


p{
    margin-bottom: 20px;
    color: black;
    font-size: 20px;
    font-style: oblique;
    margin-left: 20px;
}