@font-face {
    font-family: 'AnonymousPro';
    src: url('../fonts/ttf/AnonymousPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

*{
    margin:0;
    padding:0;
    background-color: black;
    font-family: 'AnonymousPro', monospace;
}

.main{
    width:100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7)50%), url(page.jpg);
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    background-color: black;
    position: relative;
    overflow: hidden;
}

#particleCanvas{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: transparent;
}

.animated-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(85, 107, 47, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(85, 107, 47, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(85, 107, 47, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.floating-shapes{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.floating-shapes::before,
.floating-shapes::after{
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(85, 107, 47, 0.1);
    animation: float 15s ease-in-out infinite;
}

.floating-shapes::before{
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shapes::after{
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.1;
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
        opacity: 0.15;
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
        opacity: 0.2;
    }
}

.navbar{
    width: 1200px;
    height: 75px;
    margin: auto;
    position: relative;
    z-index: 10;
}

.icon{
    width: 200px;
    float:left;
    height: 70px;
}

.logo{
    color:darkolivegreen;
    font-size: 35px;
    font-family: 'AnonymousPro', monospace;
    padding-left: 20px;
    float:left;
    padding-top: 10px;
}

.logo a{
    text-decoration: none;
    color: inherit;
}

.menu{
    width: 400px;
    float: left;
    height: 70px;
}

ul{
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul li{
    list-style: none;
    margin-left: 62px;
    margin-top: 27px;
    font-size: 14px;
}

ul li a{
    text-decoration: none;
    color:blanchedalmond;
    font-family: 'AnonymousPro', monospace;
    font-weight: bold;
    transition: 0.4s ease-in-out;

}

ul li a:hover{
     color: darkolivegreen;
}

.search{
    width: 330px;
    float: left;
    margin-left:270px;
}

.srch{
    font-family: 'AnonymousPro', monospace;
    width: 200px;
    height: 40px;
    background: transparent;
    border: 1px solid blanchedalmond;
    margin-top: 13px;
    color:cornsilk;
    border-right: none;
    font-size: 16px;
    float: left;
    padding: 10px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.btn{
    width: 100px;
    height: 40px;
    background: darkolivegreen;
    border: 2px solid darkolivegreen;
    margin-top: 13px;
    color:cornsilk;
    font-size: 15px;
    border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.btn:focus{
    outline:none;
}

.srch:focus{
    outline:none;
}

.button{
    background-color: deeppink;
    color:aliceblue;
    border: 2px solid;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 12px;
}

.button:hover{
    background-color: aliceblue;
    color:deeppink;
}

.content-area{
    width: 1200px;
    margin: 100px auto;
    text-align: center;
    padding: 50px;
    position: relative;
    z-index: 10;
}

.page-title{
    color: cornsilk;
    font-size: 4vw;
    font-family: 'AnonymousPro', monospace;
    margin-bottom: 40px;
}

.button{
    background-color: darkolivegreen;
    color: cornsilk;
    border: 2px solid darkolivegreen;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-family: 'AnonymousPro', monospace;
    font-size: 18px;
    display: inline-block;
    margin: 30px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.button:hover{
    background-color: #6b8e23;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(85, 107, 47, 0.4);
}

#message {
    color: cornsilk;
    font-size: 2.5vw;
    font-family: 'AnonymousPro', monospace;
    margin-top: 40px;
    min-height: 60px;
    line-height: 1.6;
}

.clickable-message {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}

.clickable-message:hover {
    background-color: rgba(85, 107, 47, 0.3);
    color: darkolivegreen;
    transform: scale(1.05);
}