@font-face {
    font-family: 'regave';
    src: url('fonts/RegaveDemibold-nRZrJ.ttf');
}

html, body {
	background-color:black;
	width:100%;
	height:100%;
	overflow:hidden;
	margin:0px;
}

#main{
	width:400px;
	height:100%;
	position:relative;
	margin-left:auto;
	margin-right:auto;
	padding-top:20px;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}

#businesscard {
	width:90%;
	padding:10px;
	border: 10px double #55A;
	border-radius: 10px;
	font-family:regave;
	color:#000000;
	background-color:#BBE;
}

#nameplate{
	height:38px;
	font-size:38px;
	display:flex;
	align-items:flex-end;
	justify-content:center;
	border-bottom:2px solid #559;
}

#description{
	font-size:24px;
	font-family:regave;
	font-style:italic;
	display:flex;
	flex-direction:column;
	align-items:center;
}

#links {
	padding:10px;
	font-family:regave;
	width:95%;
	background-color:none;
	display:grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 75px 75px;
	grid-gap:5px;
}

#links > a {
	font-size:28px;
	text-decoration:none;
	color:black;
	border-radius:5px;
	display:flex;
	background-color:#BEB;
	text-align:center;
	align-items:center;
	justify-content: center;
	border: 5px #040 double;
}


svg {
	position:absolute;
	width:100%;
	height:100%;
	background:black;
}

.star {
  stroke:#AA5;
  fill:#EE3;
  stroke-width:2;
  animation-name: rotation;
  animation-delay: 0s;
  animation-duration: 45s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}


@keyframes rotation {
    0% {
        transform:rotate(0deg);
    }

    100% {
        transform:rotate(359deg);
    }
}

@media (max-width:360px){
	#main{
		width:80%;
	}
	#nameplate{
		font-size:32px;
	}
}
