* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	  font-family:Inter;	
    background: #1E1836;
		color: #F1F1F1;		
}
h1 {
		font-weight:700;
		font-size:48px;
		text-align: center;
		margin-top: 140px;		
		margin-bottom: 24px;
}
.discription{
		font-weight:400;
		font-size:18px;
		text-align: center;	
		width:845px;
		
		margin: 0 auto 100px;	
}

.container {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 24px;
		max-width: 1240px;
		margin: 0 auto;
}
.object-block {
		width: 390px;	
		padding-bottom:24px;
}
.object-box {
		position: relative;
		width: 390px;
		text-align: center;
		border:solid 2px #353637;
		border-radius: 40px;
		padding:25px;
		background:#0A0B0D;
}

.image-box {
		width: 340px;
		border-radius: 30px;	
		position: relative;
		overflow: hidden;
		transition: transform 0.3s ease;
		margin-bottom: 20px;		
}

.image-box img {
		width: 100%;
		height: 100%;
		object-fit: cover;
}

.image-box img.overlay-image {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 108px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 10;
  display: none;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.download-button, .file-input {
    display: none !important; /* Гарантируем, что файловый input скрыт */
}

.load-button {
	  background:#111111;
	  border: 1px solid #353637;
	  height:42px;
    line-height:42px;
		font-weight:600;
		font-size:14px;
		text-align: center;	
		color:#F1F1F1;
		border-radius:10px;
		width:100%;
		cursor:pointer;
		transition: all 0.3s ease;
}

.load-button:hover {
    background:#1F2228
}
.save-button {
	  background:#6E54FF;
	  height:42px;
    line-height:42px;
		font-weight:600;
		font-size:14px;
		text-align: center;	
		color:#F1F1F1;
		border-radius:10px;
		width:100%;
		cursor:pointer;		
		transition: all 0.3s ease;
		  border: none;
}		
.save-button:hover {
    background:#836EF9;
}

.text-input {
		width: 100%;
	  background:#111111;		
    border: 1px solid #1B1B1B;
	  height:42px;
    line-height:42px;
		font-weight:600;
		font-size:14px;			
		border-radius: 10px;
		padding: 0 16px;
		color: #F1F1F1;			
}
.text-input::placeholder{
    color:#6F717C;
}


.file-input {
		margin: 5px;
}

.button-container {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
}

.mwl{
	margin: 120px auto 20px;
	display: block;
	opacity:1;
	transition: all 0.3s ease;
}
.mwl:hover{
	opacity:0.5;	
}
