#root {
    margin: 0;
    background-color: #ffffff;
    text-align: center;
}

.content {
    padding: 20px;
    flex: 1;
    background-color: #32363a;
    border: solid;
    border-width: 2px;
    border-color: #43474b;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 0px 0px 2px rgba(0,0,0,0.5), 
            0px 2px 4px rgba(0,0,0,0.1),
            0px 4px 8px rgba(0,0,0,0.1),
            0px 8px 16px rgba(0,0,0,0.1);
}

.container-flex {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Общие стили для всего сайта */
body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    padding: 0;
    height: 100%;
}

/* Заголовки */
h1, h2, h3 {
    margin: 20px 0;
    font-weight: normal;
}

/* Формы */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Карточки или блоки */
.card {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
}

/* Адаптивность */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    nav {
        text-align: center;
    }
}

@font-face {
    font-family: 'Minecraft';
    src: url('minecraft.woff2') format('woff2');
}

.cloud-menu {
    padding: 25px;
    color: #000000;
    background-color: #e3f2fd;;
    text-align: center;
    margin: 25px;
    border-radius: 10px;
    border: solid;
    border-width: 2px;
    border-color: #dceffd;
    box-shadow: 0px 0px 0px 2px rgb(205, 249, 255), 
                0px 2px 4px rgb(173, 250, 255),
                0px 4px 8px rgb(167, 255, 251),
                0px 8px 16px rgb(169, 249, 255);
}

header {
    border: solid;
    border-width: 2px;
    border-color: #0056b3;
    box-shadow: 5px 5px 7px #0056b3;
}

.banner {
    position: relative;
    text-align: left;
    color: white;
    margin-bottom: 20px;
}

.banner img {
    max-width: 100%; 
    height: auto; 
    border: solid;
    border-width: 1px;
    border-color: #000000;
    border-radius: 15px;
    box-shadow: 0px 1px 2px 0px rgb(25, 0, 255),
            1px 2px 4px 0px rgb(255, 166, 0),
            2px 4px 8px 0px rgb(0, 89, 255),
            2px 4px 16px 0px rgba(255, 153, 0, 0.945);
}

.banner-text {
    position: absolute;
    bottom: 8px;
    left: 16px;
}

.button {
    background-color: #0051ff;
    color: #fff;
    border-width: 0;
    text-decoration: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 15px;
    transition: background-color 0.3s;
    box-shadow: 0px 1px 2px 0px rgb(255, 145, 0),
            1px 2px 4px 0px rgb(255, 166, 0),
            2px 4px 8px 0px rgb(255, 81, 0),
            2px 4px 16px 0px rgba(255, 153, 0, 0.945);
}

.button:hover {
    background-color: #ff9900;
    transform: translateY(5px);
    box-shadow: inset 0px 10px 20px 2px rgb(0, 17, 255);
}

.products {
    display: flex;
    justify-content: center;
}

.sign-form {
    width: 400px;
    height: auto;
    margin: 50px;
}

.sign-form input {
    height: 40px;
    width: auto;
    padding: 20px;
    margin-top: 8px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #dceffd;
    color: #000000;
}
