@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
    background: linear-gradient(70deg, #0066FF,#6bddf1,#5fbfff, #6bddf1,#0066FF);
    /* background: linear-gradient(70deg, #ff00ff, #6bddf1,rgb(236, 217, 104),rgb(255, 213, 26),#ff00ff); */
    background-size: 400% 400%;
    animation: backgroundAnimation 15s ease infinite;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.logo{
    width: 500px;
    height: 300px;
    justify-self: center;
    align-items: center;
}

@keyframes backgroundAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    font-size: 3em;
    color: rgb(88, 76, 52);
}

.box-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.box {
    display: inline-block;
    width: 400px;
    height: 250px;
    background-color: #3B9AF8;
    color: white;
    font-size: 45px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid none;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 10px;
    position: relative;
    overflow: hidden;
}

.box::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.box:hover::before {
    top: -50px;
    left: -50px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.2);
}

.box:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px #a3ffff, 0 0 20px #a3ffff, 0 0 30px #a3ffff;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: block;
    position: absolute;
    background-color: #3B9AF8;
    min-width: 420px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    visibility: hidden;
}

.dropdown-content a {
    color: white;
    padding: 20px 20px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

@media (max-width: 600px) {
    .box {
        width: 150px;
        height: 100px;
        font-size: 24px;
    }

    h1 {
        font-size: 1.5em;
    }

    .dropdown-content {
        min-width: 150px;
    }
}
