@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    padding:0px;
    margin:0px;
    background:linear-gradient(0deg,rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url("https://minecraft-inside.ru/uploads/files/2024-04/2a12588c3cae5a1b59e2154ca8a975349463725d.png") center center;
    background-size:cover;
    width:100vw;
    height:100vh;
    overflow:hidden;
    font-family: 'Josefin Sans', sans-serif;
}
#loading {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background:#FE1847;
    z-index: 999;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
#spinner {
    width: 100px;
    height: 100px;
    background-image: url('Img/logoMAIN1.png'); /* Укажите путь к вашему изображению */
    background-size: contain; /* Подгоняет изображение под размер элемента */
    background-repeat: no-repeat; /* Запрещает повторение изображения */
    animation: rotate 1s infinite linear;
    margin: 0;
}


#box {
    width:100vw;
    height:100vh;
    z-index:9;
    position:fixed;
    top:0;
}
#box div {
    width:16.66vw;
    height:100%;
    display:inline-block;
}
.box1 {
    background:#FE1847;
}
.box2 {
    background:#FE1847;
    margin-left:-5px;
}
/* Стили для контейнера меню */
#menu {
    width: 100%;
    text-align: center;
    margin: 6vh 0;
    display: flex;
    justify-content: center;
    gap: 15px; /* Расстояние между кнопками */
}

/* Стили для каждой кнопки */
#menu a {
    font-size: 16px;  /* Размер шрифта */
    color: #fff;  /* Цвет текста */
    text-decoration: none;  /* Убираем подчеркивание */
    padding: 12px 25px;  /* Отступы вокруг текста */
    background-color: #FE1847;  /* Цвет фона кнопки */
    border-radius: 25px;  /* Скругление углов кнопки */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);  /* Тень кнопки */
    font-weight: bold;  /* Жирный шрифт */
    transition: all 0.3s ease;  /* Плавный переход для всех эффектов */
}

/* Эффекты при наведении на кнопки */
#menu a:hover {
    background-color: #FF5864;  /* Светлый оттенок фона при наведении */
    transform: scale(1.05);  /* Легкое увеличение кнопки */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);  /* Более выраженная тень */
}

/* Эффект при фокусе (когда кнопка активирована через клавиатуру или клик) */
#menu a:focus {
    outline: none;
    background-color: #FF5864;
    transform: scale(1.05);
}

/* Мобильные стили для меню */
@media (max-width: 768px) {
    #menu a {
        font-size: 14px; /* Уменьшаем шрифт для мобильных устройств */
        padding: 10px 20px; /* Уменьшаем отступы */
    }
}

@media (max-width: 480px) {
    #menu a {
        font-size: 12px; /* Уменьшаем шрифт еще сильнее для очень маленьких экранов */
        padding: 8px 15px; /* Уменьшаем отступы */
    }
}
#middle {
    width:100vw;
    height:90vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    position:fixed;
    top:0;
    text-align:center;
    z-index:1;
    color:#fff;
    padding-bottom:10vh;
    white-space: nowrap;
}
#middle h1 {
    color:#FE1847;
    font-size:60px;
}
.CUBO {
    font-weight: bold;
    position:relative;left:10px;
}
.Metre {
    color: rgb(255, 255, 255);
    font-weight: normal;
    position:relative;left:-10px;
}
#middle h2 {
    font-size:20px;
}
#about {
    width:10vw;
    height:10vw;
    text-align:center;
    font-size:25px;
    transform:rotate(-90deg);
    background:transparent;
    color:#fff;
    position:fixed;
    left:0;
    bottom:40vh;
    display:flex;
    flex-direction: column;
    justify-content:center;
    z-index:4;
    transition:0.4s ease-in-out;
    border-radius:0px 0px 100px 100px;
}
#work {
    width:10vw;
    height:10vw;
    text-align:center;
    font-size:25px;
    transform:rotate(90deg);
    background:transparent;
    color:#fff;
    position:fixed;
    right:0;
    bottom:40vh;
    display:flex;
    flex-direction: column;
    justify-content:center;
    z-index:4;
    transition:0.4s ease-in-out;
    border-radius:0px 0px 100px 100px;
}
#contact {
    width:10vw;
    height:10vw;
    text-align:center;
    font-size:25px;
    background:transparent;
    color:#fff;
    position:fixed;
    bottom:0;
    left:45vw;
    display:flex;
    flex-direction: column;
    justify-content:center;
    z-index:4;
    transition:0.4s ease-in-out;
    border-radius:100px 100px 0px 0px;
}
#about:hover {
    background:#FE1847;
    cursor:pointer;
}
#work:hover {
    background:#FE1847;
    cursor:pointer;
}
#contact:hover {
    background:#FE1847;
    cursor:pointer;
}
#middle table {
    width:30%;
    margin:6vh auto;
}
#middle table tr td {
    text-align:center;
}
.social {
    color:#fff;
    font-size:22px;
    border-radius:50%;
    transition:0.4s ease-in-out;
    margin:0px 8px;
    text-align:center;
}
.social:hover { 
    cursor: pointer;
    color:#FE1847;
}
.container {
    width:90vw;
    height:90vh;
    padding:5vh 5vw;
    background:#FE1847;
    color:#fff;
    z-index:9;
    position:fixed;
    max-height:100vh;
    overflow-y:auto;
    display:none;
}
.container div {
    font-size:25px;
    margin:20px 0px;
    transition:0.4s ease-in-out;
}
.container div:hover {
    cursor:pointer;
}
.container section {
    margin:8vh 0px;
}
#used div{
    font-size:14px !important;
    display:inline-block;
    padding:8px 10px;
    border:2px solid #fff;
    margin:0px 10px;
    border-radius:50px;
}
#used:hover {
    cursor:text;
}
#used div:hover {
    cursor:text;
}
.container h1 {
    font-size:60px;
    text-decoration:underline;
}
.container p {
    font-size:21px;
}
.btn_one {
    font-size:18px;
    font-family: 'Josefin Sans', sans-serif;
    color:#fff;
    background:transparent;
    border:3px solid #fff;
    padding:8px 40px;
    border-radius:80px;
    font-weight:bold;
    margin:2vh 10px;
    transition:0.4s ease-in-out;
}
.btn_one:hover {
    cursor:pointer;
    color:#FE1847;
    background:#fff;
}
.btn_two {
    font-size:18px;
    font-family: 'Josefin Sans', sans-serif;
    color:#FE1847;
    background:#fff;
    border:3px solid #fff;
    padding:8px 40px;
    border-radius:80px;
    font-weight:bold;
    margin:2vh 10px;
    transition:0.4s ease-in-out;
}
.btn_two:hover {
    cursor:pointer;
    padding:8px 60px;
}
.container form input {
    width:46%;
    margin:20px 1%;
    background:transparent;
    border:0px;
    border-bottom:3px solid rgba(255,255,255,0.5);
    padding:8px 10px;
    font-family: 'Poppins', sans-serif;
    font-size:18px;
    transition:0.4s ease-in-out;
    color:#fff;
    font-weight:bold;
}
.container form textarea {
    width:96%;
    margin:20px 1%;
    padding:8px 10px;
    border:0px;
    border-bottom:3px solid rgba(255,255,255,0.5);
    padding:8px 10px;
    font-family: 'Poppins', sans-serif;
    font-size:18px;
    background:transparent;
    resize:none;
    transition:0.4s ease-in-out;
    color:#fff;
    font-weight:bold;
}
.container form input:focus {
    outline:none;
    border-bottom:3px solid rgba(255, 255, 255,1);
}
.container form textarea:focus {
    outline:none;
    border-bottom:3px solid rgba(255, 255, 255,1);
}
::placeholder {
    color:#fff;
}
#footer {
    color:#fff;
    width:92vw;
    padding:5vh 4vw;
    text-align:right;
    position:fixed;
    z-index:1;
    bottom:0;
    font-size:10px;
    font-weight:bold;
}
#footer a {
    color:#FE1847 ;
}
#particles-js {
    position:fixed;
    width:100vw;
    height:100vh;
}
::-webkit-scrollbar {
    width:5px;
    height:5px;
}
::-webkit-scrollbar-track {
    background: #fff; 
}
::-webkit-scrollbar-thumb {
    background: #FE1847; 
}
::-webkit-scrollbar-thumb:hover {
    background: #FE1847; 
}
::selection {
	color: #fff;
	background: #FE1847;
}

@media (max-width: 800px){ 
    #about {
        display:none;
    }
    #contact {
        display:none;
    }
    #work {
        display:none;
    }
    #footer {
        text-align:center;
    }
    #middle {
        width:90vw;
        padding:0px 5vw;
    }
    #middle table {
        width:80%;
    }
    .container form input {
        width:90%;
    }
    .container form textarea {
        width:90%;
    }
    #menu {
        display:inline-block;

    }
    #onlywide {
        display:none !important;
    }
    .box2 {
        margin-left:0px !important;
    }
    #box div {
        width:100%;
    }
}
