/*=========================CONTENT=========================*/
.title {
	font-size: 90px;
	text-align: center;
	color: rgb(150, 190, 255);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
	font-family: 'Poppins', sans-serif;
}
.string {
	font-size: 25px;
	text-align: center;
	color: white;
	font-family: 'Roboto', sans-serif;
	font-weigh: 256;
	padding-left: 8px;
}
#home {
	background: rgba(0, 0, 0, 0.5);
	border: 2px solid rgba(0, 0, 0, 0.3);	
	border-radius: 25px;
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
	min-height: 90vh;
	width: 90vw;
	margin: 5vh auto;
	display: flex;
	justify-content: center;
    align-items: center;
    text-align: center;
    backface-visibility: hidden;
    box-sizing: border-box;
    padding: 20px;
}

/*========================BACKGROUND=======================*/
body::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 2048px;
    height: 2048px;
    background-image: url('dark_background.png');
    background-size: cover;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    animation: spinBG 90s linear infinite;
    z-index: -1;
}
@keyframes spinBG {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}
/*=========================================================*/
