@font-face {
font-family: spacem;
src: url("SpaceMono-Bold.ttf");
}
body {
display: flex;
flex-direction: column;
align-items: center;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.buttons {
display: flex;
justify-content: flex-start;
width: 100%;
margin-top: 20px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
button {
margin-right: 10px;
}
.linksbtn {
color: white;
border: none;
padding: 0px 11px;
text-align: center;
display: inline-flex;
align-items: center;
text-decoration: none;
justify-content: center;
font-size: 48px;
cursor: pointer;
border-radius: 0%;
transition: none;
font-family: spacem;
margin-right: 20px;
}
.whoarewe {
background-color: #484848;
color: white;
border: none;
padding: 0px 0px;
text-align: center;
display: inline-flex;
align-items: center;
text-decoration: none;
justify-content: center;
font-size: 20px;
cursor: default;
border-radius: 0%;
transition: none;
font-family: Georgia, "Times New Roman", Times, serif;
}
@media (max-width: 600px) {
.buttons {
flex-direction: column; /* Переключаем на вертикальное положение */
align-items: center; /* Центрируем кнопки */
}
}
.logo {
display: block;
max-width: 100%; /* Устанавливаем максимальную ширину на 100% */
height: auto; /* Высота будет автоматически подстраиваться */
margin-left: auto;
margin-right: auto; /* Центрируем изображение */
}