body {
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
    color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    overflow: hidden;
}
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1;
}
.logo {
    margin-bottom: 2em;
    margin-right: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo img {
    max-width: 125px;
    height: auto;
}
.nonacoustic-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.nonacoustic-logo img {
    max-width: 125px;
    height: auto;
}
.buttons {
    display: flex;
    gap: 2em;
    align-items: center;
}
.button {
    background-color: #444;
    color: #f4f4f4;
    padding: 1em 2em;
    border: 2px solid #444;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    transition: background 0.3s, transform 0.3s, border 0.3s;
}
.button:hover {
    background-color: #555;
    border: 2px solid #1e90ff;
    transform: scale(1.05);
}
 .gif-container {
    display: none;
    justify-content: center;
    align-items: center;
    height: 75vh;
}
.gif-container img {
    max-width: 100%;
    height: 960;
}
.info-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #ff0000;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.info-button:hover {
    background-color: #5b6eae;
    transform: scale(1.1);
}

.info-modal {
    display: none;
    position: fixed;
    z-index: 3;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s;
}

.modal-content {
    background-color: #2c2f33;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    margin: auto;
    border-radius: 10px;
    text-align: center;
    animation: slideIn 0.5s;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); }
    to { transform: translateY(0); }
}

.info-content {
    padding: 20px;
    max-width: 800px;
    margin: 40px auto;
    background-color: #2c2f33;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h1, h2 {
    color: #ffffff;
}

p, ul {
    color: #d1d1d1;
}

a {
    color: #7289da;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.links {
    margin-top: 20px;
}
.btn-container {
    display: flex;
    justify-content: center;
    margin-top: 1em;
}
.btn-container .btn {
    margin: 0 0.5em;
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.3s;
    width: 40px;
    height: 40px;
}
.btn-container .btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.btn-container .btn:hover {
    transform: scale(1.1);
}


/* idk if this gon work but of this gon work then thank you internet */

@media (max-width: 768px) {
    .buttons {
        flex-direction: column;
        max-width: 100%;
    }

    .logo {
        margin-bottom: 2em;
        margin-left: 2em;
        display: flex;
        justify-content: center;
        align-items: center;
    }   
    
    .nonacoustic-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }  

    .button {
        padding: 1em;
        font-size: 1em;
        width: 100%;
        margin-bottom: 1em;
    }

    .logo img {
        max-width: 150px;
        height: auto;
    }
    
    .nonacoustic-logo img {
        max-width: 150px;
        height: auto;
    }

    .info-button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
