@import url("https://fonts.googleapis.com/css2?family=Tahoma:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

input,
textarea {
  box-sizing: border-box;
}

body {
  font-family: "Tahoma", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background-size: contain;
  max-width: 1000px;
  box-shadow: 4px 4px 8px 0 rgba(34, 60, 80, 0.2);
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F2E4D7;
  padding: 40px;
  border-radius: 5px;
  background-image: url(/Image/logo.png);
  background-size: 350px;
  background-repeat: no-repeat;
  background-position: center top;
  background-origin: content-box;
}

p{
  padding-top: 130px;
}

.details {
  margin-bottom: 15px;
  text-align: left;
}

.details i {
  font-size: 25px;
  color: #800046;
  margin-bottom: 10px;
}

.topic {
  font-size: 18px;
  font-weight: 500;
  color: #800046;
}

.topic-text {
  font-size: 23px;
  font-weight: 600;
  color: #800046;
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  .content {
    height: 100%;
    flex-direction: column-reverse;
	background-position: center top;
    background-origin: content-box;
	background-image: url(/Image/logo.png);
    background-size: 250px;
    }
  }
  
  .details {
    margin-right: 20px;
  }
}

   .background-div {
     background-image:url("/Image/logo.png");
     position:relative;
   }
   .href:after {
     position:absolute;
     top:0;
     bottom:0;
     left:0;
     right:0;
     content:"";
    }