@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    left: 0;
    top: 0;
    font-family: 'Open Sans', sans-serif;
    min-height: 100vh;
}

h1 {
    font-size: 1.9rem;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}
h2 {
    font-size: 1.6rem;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

.header {
    height: auto;
    padding: 10px 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.header .logo {
    width: 170px;
    height: auto;
    margin: auto;
    text-align: center;
}

.container {
    width: 100%;
    padding: 100px 0;
    background: url(./content_bg.png) repeat;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.inner-container {
    max-width: 900px;
    margin: auto;
    background-color: white;
    border-radius: 20px;
    padding: 25px;
	text-align: center;
}

.text {
    font-size: 1rem;
}

.text a {
    color: #7B9F02;
    text-decoration: none;
	border-bottom: 2px solid #7B9F02;
}
.text a:hover {
    color: #822F8E;
	border-bottom: 2px solid #822F8E;
}

.links {
	margin: auto;
	position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.links a:first-child {
  margin-right: 1.5rem;
}

.line {
    height: 15px;
    width: 100%;
    bottom: 0;
    background: linear-gradient(to right, #03A5EB 0%, #03A5EB 33%, #822F8E 33%, #822F8E 66%, #7B9F02 66%, #7B9F02 100%);
}

@media only screen and (max-width: 1024px) {
    .header .logo {
         width: 100px;
     }
     .inner-container {
         margin: 0 1rem;
     }
   }

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.2rem;
    }
   .header .logo {
        width: 100px;
    }
    .container {
        padding: 50px 0;
    }
    .inner-container {
        margin: 0 1rem;
    }
	.links {
		display: flex;
    flex-wrap: wrap;	
	}
  }