*{
    margin: 0;
    padding:0;
    font-family: sans-serif;
    box-sizing: border-box;
    text-decoration: none;
}

.logo {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0; /* Space around the logo */
    background-color: #000;
}
.logo img {
    max-width: 150px; /* Adjust the logo size as needed */
    height: auto;


}

.header{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: black;
    
}

.menu a{
    font-size: small;
    padding: 10px 10px;
    margin-bottom: 30px;
}


.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #000;
    text-align: center;
}


h1,h2{
    color: WHITE;
    margin-top: 1rem;
    margin-bottom: 10px;
    text-shadow:  2px 3px 1px  #03e9f4;
}

h3,h4{
    color: #03e9f4;    
}

.wrapper{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    background-color: #000;
    text-align: center;
    margin-top: 100px;
   
}
a{
    position: relative;
    display: inline-block;
    border-radius: 0.1rem;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #03e9f4;
    font-size: 1.4rem;
    font-weight: bolder;
    transition: .5s;
    overflow: hidden;
    margin-bottom: 50px;
}
a:hover{
    border-radius: .5rem;
    background-color: #03e9f4;
    color: #050801;
    box-shadow: 0 0 5px #03e9f4,
                0 0 25px#03e9f4,
                0 0 50px #03e9f4,
                0 0 300px #03e9f4;
    -webkit-box-reflect: below 1px linear-gradient(transparent,#0005);
}
a:first-child{
    filter: hue-rotate(225deg);
}
a:last-child{
    filter: hue-rotate(90deg);
}
span{
    position: absolute;
    display: block;
}
span:nth-child(1){
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,transparent,#03e9f4);
    animation: animate1 1s infinite;
}
@keyframes animate1{
    0%{
        left:-100%;
    }
    100%{
        left: 100%;
    }
}
a span:nth-child(2){
    top: -100%;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,transparent,#03e9f4);
    animation: animate2 1s infinite;
    animation-delay: .25s;
}
@keyframes animate2{
    0%{
        top:-100%;
    }
    100%{
        top: 100%;
    }
}
a span:nth-child(3){
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(270deg,transparent,#03e9f4);
    animation: animate3 1s infinite;
    animation-delay: .5s;
}
@keyframes animate3{
    0%{
        right: -100%;
    }
    100%{
        right: 100%;
    }
}
a span:nth-child(4){
    bottom: -100%;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(360deg,transparent,#03e9f4);
    animation: animate4 1s infinite;
    animation-delay: .75s;
}
@keyframes animate4{
    0%{
        bottom: -100%;
    }
    100%{
        bottom: 100%;
    }
}