body{
    padding:0%;
    margin: 0%;
    display: flex;
    place-items: center;
    height: 100vh;
    max-width: 1440px;
    background-image: url(./bg-intro-desktop.png);
    background-color:  hsl(0, 100%, 74%) ;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}
main{
    display: flex;
    color: white;
}
h1{
  font-size: 50px;
  font-weight: 700;
}
.section1{
   
    text-align: left;
    margin: auto;
    margin-left: 10%;
    width: 50%;
}
.section2{
   margin: 10% 10% 10% 5%;
   width: 50%;
   height: 70%;
}

.small-content{
    background-color: hsl(248, 32%, 49%) ;
    border-radius: 5px;
    height: 2em;
    text-align: center;
    width: 105%;
    padding-top: .5em;
    color:  hsl(246, 25%, 77%);
}
.strong{
    color: white;
}
input{
    margin: .5em 0;
    height: 2em;
    border-radius: 5px;
    border: .5px rgb(153, 129, 129) solid;
    width: 100%;
    font-weight:500;
}

table{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
form{
    background-color: white;
    color: black;
    border-radius: 5px;
    width: 100%;
    padding: 1em;
    height: 90%;
}

button{
    background-color: hsl(154, 59%, 51%);
    color: white;
    border: none;
    height: 3em;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    font-weight: 600;
}
a{
    color:   hsl(0, 100%, 74%);
    text-decoration: none;
}
form p{
    margin-left: 1em;
    font-weight: 400;
    color:  hsl(246, 25%, 77%);
    font-size: 12px;
    text-align: center;
}
@media only screen and (max-width: 600px){
    body{
        display: block;
        margin: 30% auto;
    }
    main{
        display: block;
    }
  .section1{
      width: 100%;
  }
  .section2{
      width: 100%;
  }
}