@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap');

    
*{
    font-size: 20px;
    font-family: 'Poppins',sans-serif;
    
}
header p{
    margin:0;
    padding:0;
}

h1{
    
    font-size: 35px;
    color: #1c2e4a;
}
h2{
    font-size:25px;
}
#background img{
   float: right;
   width: 40%;
}
body{
    display: flex;
    background-image:url(img/pattern-bg.webp)
}
aside{
    display:flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top:8px;
    margin: 20px;
    
}
aside div:nth-child(1){
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1c2e4a;
    color: white;
    padding-bottom: 20px;
    border-radius: 10px;
    
}
aside div{
    width: 100%;
    
}
aside{
    text-align: center;
}
aside div form input{
    border-radius: 20px;
    background-color: crimson;
    color: white;
    border-color: transparent;
    transition: 1s ease;
}
aside div form input:hover{
    background-color: maroon;
}
aside iframe{
    border-radius: 10px;
}
em{
    text-decoration: underline;
    font-style: normal;
}