body{
    background-image: url(./images/bg-desktop.svg);
    background-color: hsl(257, 40%, 49%);
    font-family: 'Poppins', sans-serif;
    
}

.overall header img{
    padding: 20px 70px;
    width: 200px;
    height: 100px;
    
}
.content{
   display: flex;
     justify-content: center;
    align-content: center;
    align-items: center;
}
.content img{
 width: 800px;
 margin-top: 40px;

}

.inside-content{
    color: white;
    width: 650px;
    margin-left: 50px;
    margin-bottom: 70px;
}

.inside-content h1{

    font-size: 55px;

}
.inside-content p{

    font-size: 24px;
    color: rgba(255, 255, 255, 0.705);
    font-weight:normal;

}
.btn{
    
    width: 200px;
    height: 50px;
    border-radius: 25px;
    border: none;
    font-weight: 500;
    color: hsl(257, 40%, 49%);
    margin-left: 20px;
    text-align: center;
    font-size: 19px;
    cursor: pointer;
    background-color: white;
}

.btn:hover{
    background-color:hsl(300, 69%, 71%) ;
    color: white;
    box-shadow: 0 0 40px rgb(0, 0, 0);
}

.links{
  justify-content: end;
  display: flex;
  margin-right: 50px;
}

.links a {
  color: white;
  border: 1px solid white;
  border-radius: 50%;
  padding: 10px;
  transition: all 0.2s ease;
  transform: scale(1.4);
  margin: 20px;
}

.links a:hover {
  border-color: hsl(300, 69%, 71%);
  color: hsl(300, 69%, 71%);
  
}

@media (max-width: 768px) {
 body{

    background-image: url(./images/bg-mobile.svg);
    background-repeat: no-repeat;
 }

  .content{
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .inside-content{
  width: 50%;
  }
  
  .content img {
    max-width: 300px;
    margin-left: 60px;

  }

  .content h1 {
    font-size: 32px;
  }

  .content p {
    font-size: 16px;
  }

  .links {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
     margin-left: 90px;
  }
}