@font-face {
    font-family: 'Aileron-Thin';
    src: url('./fonts/Aileron-Thin.otf') format('opentype');
}
@font-face {
    font-family: 'Aileron-Regular';
    src: url('./fonts/Aileron-Regular.otf') format('opentype');
}
.small-text {
    font-family: 'Aileron-Thin', sans-serif;
}
.regular-text {
    font-family: 'Aileron-Regular', sans-serif;
}
.large-text {
    font-size: 1.3em;
}
body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
	margin: 0; 
	padding: 0; 
	position: relative;
    background-color: #121212;
    color: #ffffff;
    font-family: 'Aileron', sans-serif;
    letter-spacing: 0.2rem;
    text-transform: uppercase;	
}
button {
	background: none;
	border: none;
	color: white;
	font: inherit; 
	padding: 0;
	cursor: pointer;
}
	button:hover,
	button:focus,
	button:active {
	outline: none; 
}

#starfield { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
	z-index: -1; 
}
.element {
    text-align: center;
    position: relative;
}
.menu {
	width: 80%;
	margin: 20px auto;
}
.thumb img {
	width: 100%;	
	height: 100%;
	border-radius: 50%;
}
.italic {
	font-style: italic;
}
.hcont{
	display: flex;
	flex-direction: row;
    justify-content: center;
	flex-wrap: wrap;
}
.prod .hcont {
	margin: 60px 0;
}
.vcont{
	display: flex;
	flex-direction: column;
    justify-content: center;
}
.prod p {
	white-space: break-spaces;
	text-align: left;
	font-size: 10pt;
	text-transform: initial;
	line-height: 1.5;
	letter-spacing: 1px;
	padding: 0 5vw;
}
button {
	margin: 20px;
}
.hcont .element {
	width: 40%;
}
.hcont .title.element{
	width: 20%;
	padding: 35px 0;
}

.thumb {
	width: 125px;
	height: 125px;
	border-radius: 50%;
	padding: 11px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px;
	cursor: pointer;
}
.thumb:hover {
	padding: 10px;
	border: 1px solid white;
    transform: scale(1.05);
    transition: all 0.3s ease; 
	background-color: #121212;
}
* {
    box-sizing: border-box;
}
.thumb-one{
	width: fit-content;
	margin: 0 auto;
}
.image-title {
	text-align: center;
	font-size: 14px;
	margin-top: 5px;
}

.prod {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: #121212;
	width: 100%;
	margin: 20px auto;
	height: fit-content;
	border: 1px solid transparent;
    border-image: linear-gradient(to right, transparent, white, transparent) 1;
	z-index: 999;
}
.prod img {
	max-width: 400px;
}
.border-bottom {
    border-top: 1px solid transparent;
    border-image: linear-gradient(to right, transparent, white, transparent) 1;

}
.menu>.border-bottom {
	width: 35%;
	margin: auto;
}
.spgr {
	padding: 50px 15vw;
}
.spgr p {
	text-align: center;
}
.graphic {
	width: 100%;
	overflow: hidden;
}
.graphic .arc {
    width: 1330px;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-25%);
}
.arc .line {
    fill: none;
    stroke: url(#gradient);
}
.bottom-text {
    color: #ffffff;
	margin: 50px auto;
}
.logo {
    height: 170px;
	margin-top: 50px;
}
footer {
	flex-shrink: 0; 
    text-align: center;
	width: 100%;
}
.footer-content {
    display: flex;
    justify-content: center;
    gap: 20px;
	height: 60px;
}
.social-icon {
    width: 35px;
}
@media screen and (max-width: 700px) {
	body {
		font-size: 13px;
	}
	.border-top {
		width: 80%;
	}
	.logo {
		height: 130px;
		margin-top: 30px;
	}
	.spgr {
		padding: 0 5vw 50px;
	}
	.menu>.border-bottom {
		width: 100%;
	}

}
@media screen and (max-width: 1000px) {
	.hcont .element {
		width: 96%;
	}
	.hcont .title.element{
		width: 100%;
	}
	.prod img {
		width: inherit;
	}
	.prod {
		top: 20px;
		transform: translate(-50%,0%);
	}
	.menu>.border-bottom {
		width: 75%;
	}
}
@media screen and (max-width: 1400px) {
	.menu {
		width: 100%;
	}
}
