/* CSS Document */

/* misc */

body{
	font-family: futura;
	margin: 0;
	Padding:0;
}

/* alles für index */

.bild-von-mir{
	height: 500px;
	border-radius: 100%;
	border: 3px solid;
	border-color: #F6D5A1;
	margin: 50px 25px;
	float: right;
}

.h1-1{
	margin: 65px 35px 0px;
	left: 50%;
}

.text{
	font-size: 16px;
	color: #FCEFE5;
	padding-left: 25px;
}

/* alles für projekte */

.loop{
	margin: 100px;
	width: 100%;
	border: 5px;
	display: flex;
}

.bilder-loop{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	overflow-x: auto;
	animation: spin 10s infinite linear;
	padding-right: 5px;
}

.bilder-loop::-webkit-scrollbar{
	display: none;
}

.card{
	flex: 0 0 40px;
	heigth: 70px;
	padding: 20px;
	font-size: 20px;
	border-radius: 5px;
	text-align: center;
	align-content: center;
}

@keyframes spin{
	from{
		translate: 0;
	}
	to{
		translate: -100%
	}
}

/* alles für die navbar */

.navbar{
	padding: 30px 20px;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	border: solid 1px rgba(0, 0, 0, .1);
}

.navbar ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.navbar li{
	display: inline-block;
	margin: 0 15px;
}

.navbar a{
	font-size: 26px;
	text-transform: uppercase;
	text-decoration: none;
	color: #FCEFE5;
	display: block;
	position: relative;
	padding: 4px 4px;
}

.navbar a::before{
	content: "";
	width: 100%;
	height: 4px;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: 0.5s transform ease;
	transform: scale3d(0,1,1);
	transform-origin: 50% 50%;
	background: #A78CC0;
}

.navbar a:hover::before{
	transform: scale3d(1,1,1);
}
/* generelles für das portfolio */

h1{
	font-size: 37px;
	color: #FCEFE5;
}

/* alles für den footer */

footer{
	font-size: 16px;
	color: #FCEFE5;
	text-align: center;
	padding: 20px 20px;
	background: linear-gradient(20deg, rgba(157,71,149,1) 35%, rgba(167,140,192,1) 100%);
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}

footer a{
	padding: 0px 15px;
	text-decoration: none;
	color: #FCEFE5;
}

footer a:hover{
	text-decoration: underline;
}

.logo{
	height: 50px;
	float: left;
	padding: 0px 25px;
}

.jeronimo{
	float:left;
	padding: 0px;
}

/* div für das porfolio selbst */

.textfeld{
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	height: 90%;
	background: rgba(2, 0, .6, .2);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(2, 0, .6, .1);
	backdrop-filter: blur(5.5px);
	border: 1px solid rgba(2, 0, .6, .1);
	overflow: auto;
}

.textfeld::-webkit-scrollbar{
	display: none;
}

/* alles für den hintergrund */

.Hintergrund{
	position: fixed;
	width: 100%;
	height: 100%;
	background: linear-gradient(27deg, rgba(2,0,.6,1) 0%, rgba(157,71,149,1) 35%, rgba(167,140,192,1) 100%);
}
.box div{
	position: absolute;
	width: 60px;
	height: 60px;
	background-color: transparent;
	border: 6px solid rgba(252,239,229,1);
}
.box div:nth-child(1){
	top: 12%;
	left: 42%;
	animation: animate 10s linear infinite;
}
.box div:nth-child(2){
	top: 70%;
	left: 50%;
	animation: animate 7s linear infinite;
}
.box div:nth-child(3){
	top: 17%;
	left: 6%;
	animation: animate 9s linear infinite;
}
.box div:nth-child(4){
	top: 20%;
	left: 60%;
	animation: animate 10s linear infinite;
}
.box div:nth-child(5){
	top: 67%;
	left: 10%;
	animation: animate 6s linear infinite;
}
.box div:nth-child(6){
	top: 80%;
	left: 70%;
	animation: animate 12s linear infinite;
}
.box div:nth-child(7){
	top: 60%;
	left: 87%;
	animation: animate 15s linear infinite;
}
.box div:nth-child(8){
	top: 32%;
	left: 25%;
	animation: animate 16s linear infinite;
}
.box div:nth-child(9){
	top: 90%;
	left: 25%;
	animation: animate 9s linear infinite;
}
.box div:nth-child(10){
	top: 20%;
	left: 80%;
	animation: animate 5s linear infinite;
}
@keyframes animate{
	0%{
		transform: scale(0) translateY(0) rotate(0);
		opacity: 1;
	}
	100%{
		transform: scale(1.3) translateY(-90px) rotate(360deg);
		opacity: 0;
	}
}