/* Общие настройки */
body {
font-family: Arial, sans-serif;
background-color: #F0F0F0; /* Светлый серый фон */
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
/* Контейнер для централизации содержимого */
.container {
width: 300px;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Легкая тень */
background-image: linear-gradient(to bottom right, #EAF6FF, #DCEEFB); /* Фон контейнера */
text-align: center;
}
/* Логотип стопки */
.logo {
width: 150px;
height: 150px;
margin-bottom: 20px;
position: relative;
/* Верхняя фигура */
&::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 50%;
background-color: white;
z-index: 3;
}
/* Средняя фигура */
&::after {
content: '';
position: absolute;
top: 25%;
left: 0;
width: 100%;
height: 50%;
background-color: #ADD8E6;
z-index: 2;
}
/* Нижняя фигура */
background-color: #4682B4;
z-index: 1;
}
/* Сайт */
.website {
color: #333;
font-size: 16px;
margin-bottom: 20px;
}
/* Нижний текст */
.footer-text {
color: #666;
font-size: 14px;
}