@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

section {
  width: 100%;
}

a, a:after, a:visited {
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  color: #9553A0;
}

.background {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #0A0A0A;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  column-gap: 20px;
}

.text-content {
  display: block;
  padding: 40px 40px;
  width: 450px;
}

.image-content {
  width: 420px;
}

.text-header {
	color: #9553A0;
  font-size: 35px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.text-body {
	color: #E6EDF3;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.5rem;
}

.link-body {
  font-size: 15px;
  margin-bottom: 15px;
}

.link-image {
  display: inline-block;
  width: 20px;
  height: 20px;
  opacity: .5;
  margin-right: 15px;
}

@media screen and (max-width:790px) {

  .content{
    min-width: 200px;
    padding: 40px 0px;
    display: flex;
    flex-direction: column-reverse;
  }

  .text-content{
    display: block;
    width: 100%;
    padding: 20px 40px;
  }

  .image-content{
    display: flex;
    width: 420px;
    align-self: center;
    justify-content: center;
    margin: auto;
  }
}

::-moz-selection { /* Code for Firefox */
  color: white;
  background: #9553A0;
}

::selection {
  color: white;
  background: #9553A0;
}