@charset "utf-8";
/* CSS Document */
:root {
--blue: #27225A;
}

.disclosure_container {
	display: grid;
	grid-template-columns: 1fr;
	margin: 2rem 5% 2rem 5%;
	}

.disclosure-desc {
	grid-row-start: 3;
	margin: 0 10%;
	padding: 26px;
	background: repeating-linear-gradient(to bottom right, #27225A, #0044c1);
	border-bottom-left-radius: 60px;
	border-top-right-radius: 60px;
	font-family: roboto;
	color: white;
}

.disclosure-desc h1{
	font-size: clamp(2rem, 4vw, 3rem);
}
.disclosure-desc h2{
	color: #ededed;
}

