@keyframes gradientAnimation {
    0% {
		background-position: 0% 50%;
	}
    50% {
		background-position: 100% 50%;
	}
    100% {
		background-position: 0% 50%;
	}
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    height: 100%;
	width: 100%;
    color: white;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    overflow: hidden;
}
.web_apps_body {
	background: linear-gradient(-45deg, #52eee4, #3ce788, #23a6d5, #23d5ab);
    background-size: 100% 100%;
    animation: none;
}

/* .container { */
/* max-width: 1200px; */
/* margin: 0 auto; */
/* padding: 2rem; */
/* display: flex; */
/* flex-direction: column; */
/* min-height: 100vh; */
/* } */

h1 {
	text-align: center;
	font-weight: 600;
	margin: 10px;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.title_header{
	display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    align-content: center;
    align-items: center;
}
.box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease; /* Transition sur le box-shadow */
    overflow: hidden;
    backdrop-filter: blur(10px);
    width: 300px;
    position: absolute;
    cursor: move;
    user-select: none;
    touch-action: none;
}
.icons {
    border-width: 0px;
    background: rgba(255, 255, 255, 0);
    display: flex;
    justify-content: center;
    margin: 0.5rem;
    padding: 0.2rem 0.5rem;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    align-content: center;
    align-items: center;
}
.icons a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}
.icons a:hover {
    transform: scale(1.2);
}
/* styles.css */
.non-selectable {
	user-select: none;
}
.selectable {
	user-select: auto;
}
.box:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.box h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.box p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.box a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.box a:hover {
    background: rgba(255, 255, 255, 0.3);
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(data:image/png;base64,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);
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

.social-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    align-content: center;
    align-items: center;
}

.social-icons a:hover {
    transform: scale(1.2);
}
.home-return{
}
.header-all{
	display: flex;
    justify-content: center;
}
@media screen and (max-width:500px) {
    
	.social-icons a {
		color: white;
		font-size: 0.9rem;
		transition: all 0.3s ease;
	} 
	.header-all{
		display: flex;
		justify-content: center;
	}
	.home-return{
	    position: relative;
		top: 0;
		left: 0;
		display: flex;
		justify-content: space-around;
		margin-top: 1rem;
		
	}
	/* .container{ */
	/* padding: 0.5rem; */
	/* } */
	.box h2{
		margin: 0.2rem;
		font-size: 1rem;
		margin: 0.3rem;
	}
	.box p {
		font-size: 0.7rem;
		color: rgba(255, 255, 255, 0.8);
		
		margin: 0.2rem;
	}
	.box a{
		padding: 0.2rem 0.5rem;		
		font-size: small;
		margin: 0.3rem;
	}
	body, html {
		background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
		color: #fff;
		background-size: 100% 100%;
	}
	.box{
	  scale: 60%;
	}
	
	h1 {
		display: flex;
        text-align: center;
        margin: 0.5em;
        font-size: 1.3em;
        align-content: center;
        align-items: center;
        justify-content: center;
	}
	.set-controls{
		margin: 0px;
	}
	.set-controls button{
		margin: 15px;
		padding: 15px;
	}
	.player-form {
		margin-bottom: 15px;
	}
	.player-list {
		margin-bottom: 15px;
		gap: 5px;
	}
	.player{
		padding: 5px 5px;
	}
	#app{
	    padding: 15px;
	}
	.export-buttons {
		display: flex;
		justify-content: center;
		padding-bottom: 20px;
		
	}
	.export-button {
		margin: 10px;
        padding: 15px;
        display: flex;
        justify-content: center;
	}
}
@media screen and (orientation: landscape) and (max-width:900px){
	.box{
	  scale: 60%;
	}
	
	h1 {
		display: flex;
        text-align: center;
        margin: 0px;
        font-size: 1.3em;
        align-content: center;
        align-items: center;
	}
	.set-controls{
		margin: 0px;
	}
	.set-controls button{
		margin: 15px;
		padding: 15px;
	}
	.player-form {
		margin-bottom: 15px;
	}
	.player-list {
		margin-bottom: 15px;
		gap: 5px;
	}
	.player{
		padding: 5px 5px;
	}
	#app{
		padding: 15px;
	}
	.export-buttons {
		display: flex;
		justify-content: center;
		padding-bottom: 20px;
		
	}
	.export-button {
		margin: 10px;
        padding: 15px;
        display: flex;
        justify-content: center;
	}
}