/*@font-face{
    font-family: 'poppins';
    src: url('../fonts/poppins-regular.ttf');
}*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    padding-top: 30px;
    color: white;
    overflow-x: hidden;
}

.loginbar{
    position: fixed;
    width: 100%;
    height: 30px;
    top: 0;
    background-color: rgb(5, 34, 40);
    padding: 6px;
    color: #ccc;
    z-index: 21;
}

.loginbar > a{
    text-align: right;
    float: right;
    text-decoration: none;
    color: red;
}

footer {
    font-family: poppins;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    bottom: 0;
    left: 0;
    font-size: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00b8d9;
}

.footer-social {
    padding: 10px 0;
}

.footer-social a {
    color: 00b8d9;
    margin: 0 5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: 00b8d9;
}

header{
    width: 100%;
    height: 60px;
    background-color: #5c5e7b;
    position: fixed;
    top: 0;
    left: 0;
    margin: auto;
    z-index: 500!important;
}

header > h2{
    line-height: 20px!important;
    padding-left: 16px!important;
    float: left!important;
}

header > h2:first-of-type{
    display: block
}

header > h2:last-of-type{
    display: none
}

@media only screen and (max-width: 1150px) {
    header > h2:first-of-type{
        display: none
    }
    
    header > h2:last-of-type{
        display: block
    }

    header > nav{
        width: calc(100% - 120px)!important;
    }
}

header > nav{
    width: 53%;
    height: 100%;
    float: right;
}

header > nav > a{
    float: right;
    line-height: 60px;
    padding: 0px 20px;
    transition: color 0.3s ease-in-out;
}

header > nav > a:hover{
    color: #6fe7ff;
    transition: color 0.3s ease-in-out;
}

header > img{
    display: none;
}

@media only screen and (max-width: 730px) {
    header > nav{
        display:flex;
        flex-direction: column;
        width: 100%!important;
        margin-right: 0;
    }

    header > img{
        display: block;
        position: absolute;
        margin: auto;
        top: 10px;
        right: 10px;
        height: 40px;
        width: 40px;
        filter: invert();
    }

    header > nav > a{
        text-align: right;
        background: linear-gradient(148deg,rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
    }

    header > nav > a:nth-last-of-type(odd){
        background: linear-gradient(305deg,rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
    }
}