/* index.html style */
@keyframes blink {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: 0;
    }
}

body {
    font-family: 'Arial', 'sans-serif';
    /* display: flex;
    justify-content: center;
    align-items: center*/
}

header {
    background-color: #269ae7;
}

.logo span {
    color: white;
    text-transform: uppercase;
    letter-spacing: .3em;
    
}
#intro {
    color: white;
    animation: blink 2s infinite;
}

/* .user_authentication {
    width: 100%;
    height: max-content;
} */

.user_authentication button {
    background-color: rgb(30, 171, 171);
}

.user_authentication a {
    text-decoration: none;
    color: white;
}

/* index.html style ends here */

/* login.html style start */
