html, body {
    height: 100vh;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body {
    background: linear-gradient(45deg, #000000, #232323);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
	
}
@keyframes gradient {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
.floating-object {
    width: 50px;
    height: 50px;
    background-image: url('../images/cup1.png');;
    background-size: cover;
    position: absolute;
    bottom: 0;
    animation: float 3s ease-in-out infinite; /* Длительность и тип анимации */
}


.floating-object:nth-child(2) {
    left: 20%; /* Позиционирование второго объекта */
}

.floating-object:nth-child(3) {
    right: 20%; /* Позиционирование третьего объекта */
}
.floating-object:nth-child(4) {
    top: 20%;
    left: 30%;
}
.floating-object:nth-child(5) {
    bottom: 20%; /* Позиционирование третьего объекта */
    left: 60%;
}

.floating-object:nth-child(6) {
    left: 14%; /* Позиционирование второго объекта */
    top: 34%;
}

.floating-object:nth-child(7) {
    right: 20%; /* Позиционирование третьего объекта */
    top: 10%;
}
.floating-object:nth-child(8) {
    top: 48%;
    left: 24%;
}
.floating-object:nth-child(9) {
    bottom: 45%; /* Позиционирование третьего объекта */
    left: 90%;
}
.floating-object:nth-child(10) {
    bottom: 50%; /* Позиционирование третьего объекта */
    left: 50%;
}
.floating-object:nth-child(11) {
    bottom: 10%; /* Позиционирование третьего объекта */
    left: 40%;
}

.floating-object:nth-child(12) {
    bottom: 35%; /* Позиционирование третьего объекта */
    left: 5%;
}
.floating-object:nth-child(13) {
    bottom: 40%; /* Позиционирование третьего объекта */
    left: 75%;
}

.floating-object:nth-child(14) {
    bottom: 80%; /* Позиционирование третьего объекта */
    left: 2%;
}

.floating-object:nth-child(15) {
    bottom: 10%; /* Позиционирование третьего объекта */
    left: 90%;
}
.floating-object:nth-child(16) {
    top: 5%; /* Позиционирование третьего объекта */
    left: 50%;
}
.floating-object:nth-child(17) {
    top: 15%; /* Позиционирование третьего объекта */
    left: 90%;
}
.floating-object:nth-child(18) {
    top: 20%; /* Позиционирование третьего объекта */
    left: 60%;
}
.floating-object:nth-child(19) {
    bottom: 5%; /* Позиционирование третьего объекта */
    left: 56%;
}
.floating-object:nth-child(20) {
    bottom: 10%; /* Позиционирование третьего объекта */
    left: 10%;
}
.floating-object:nth-child(21) {
    bottom: 30%; /* Позиционирование третьего объекта */
    left: 30%;
}
.floating-object:nth-child(22) {
    bottom: 40%; /* Позиционирование третьего объекта */
    left: 40%;
}
.floating-object:nth-child(23) {
    bottom: 40%; /* Позиционирование третьего объекта */
    left: 60%;
}

.floating-object:nth-child(24) {
    bottom: 60%; /* Позиционирование третьего объекта */
    left: 76%;
}

.floating-object:nth-child(25) {
    top: 10%; /* Позиционирование третьего объекта */
    left: 15%;
}

.floating-object:nth-child(26) {
    bottom: 25%;
    left: 83%;
}


.content {
    justify-content: center;
    display: flex;
    align-items: center;
    height: 100vh;
    color: #fff;
    flex-direction: column;
}

.list-link {
    color: #fff;
    background: #fab619;
    margin-bottom: 20px;
    z-index: 1000000;
    border-radius: 19px;
    background-color: rgba(255, 193, 7, 0.5);
    backdrop-filter: blur(10px);
    transition: box-shadow 1s ease;
    position: relative;
}

.list-link a {
    width: 100%;
    display: block;
    height: 100%;
    padding: 15px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
}

.list-link a img {
    height: 30px;
    position: absolute;
    left: 10px;
    bottom: 12px;
}

.list-link:hover {
    box-shadow: 0px 0px 23px 7px rgba(250,182,25,0.45);
    -webkit-box-shadow: 0px 0px 23px 7px rgba(250,182,25,0.45);
    -moz-box-shadow: 0px 0px 23px 7px rgba(250,182,25,0.45);
}

.logo {
	width: 270px;
    margin-bottom: 30px;
	z-index: 100000;
	position: relative;
}

.modal-content {
	background-color: #232323;
	border: 1px solid #ffc107;
}

.modal-title {
	font-weight: bold;
    color: #ffc107!important;
}
.modal-header {
	border-color: #ffc107;
}
label {
	color: #ffc107!important;
}
.btn {
	border: var(--bs-btn-border-width) solid #ffc107;
	background-color: #171717;
    width: 150px;
	color: #ffc107;
}

.btn:hover {
    color: #ffc107;
    background-color: #575757;
    border-color: #ffc107;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: #ffc107;
    background-color: #575757;
    border-color: #ffc107;
}

@media (max-width: 767px) {
	body {
		align-items: center;
		display: flex;
		overflow: hidden;
	}
	.content {
        justify-content: center;
        display: flex;
        align-items: center;
        height: 100%;
        color: #fff;
        flex-direction: column;
    }
    .logo {
        width: 150px;
        margin-bottom: 20px;
    }

    .list-link {
        color: #fff;
        background: #fab619;
        margin-bottom: 6px;
        z-index: 1000000;
        border-radius: 19px;
        background-color: rgba(255, 193, 7, 0.9);
        backdrop-filter: blur(10px);
        transition: box-shadow 1s ease;
        position: relative;
    }

    .list-link a {
        width: 100%;
        display: block;
        height: 100%;
        padding: 8px 15px;
        text-decoration: none;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        font-weight: 700;
    }

    .list-link a img {
        height: 17px;
        position: absolute;
        left: 10px;
        bottom: 12px;
    }
	.floating-object:nth-child(6) {
    left: 14%;
    top: 34%;
}
}