:root {
	--penn-blue: #000F4D;
	--azul: #016FB9;
	--pacific-cyan: #22AED1;
	--lime: #D3FF36;
	--white:#FFFFFF;
}
 
<style>

  @import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');

body {
	font-family: 'Raleway', sans-serif;
}
.bg-sfumed {
	background: linear-gradient(45deg, var(--penn-blue), var(--pacific-cyan));
	width: 100vw;
    min-height: 100vh;
	flex-direction: column;
	display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
	padding: 60px 0;
}

.portal svg {
	width: 100%;
}

.button-flex {
	display: flex;
    gap: 5rem;
}

.button-access {
	text-transform: uppercase;
	font-family: 'Raleway', sans-serif;
	padding: 15px 30px;
	border-radius: 40px;
	background: var(--lime);
	/* text-decoration: none !important; */
	font-weight: bold;
}
.button-access a {
	text-decoration: none !important;
	color: #333;
}