@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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: Poppins, Algerian, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-y: scroll;
}

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

.navbar {
    min-height: 75px;
    background-color: #092E49;
    padding-left: 10px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
    color: white;
    box-shadow: 0 10px 50px #21577D;
    position: fixed;
    box-sizing: border-box;
    width: 100%;
    z-index: 10;
}

.navbar h1, p {
    margin-top: 0;
    margin-bottom: 0;
}

.navbar a {
    color: white;
    text-decoration-color: #EE9C35;
}



.navbarleft {
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbarleft a {
    line-height: 0;
}



.navbarright {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    gap: 50px;
}

.navbarright a {
    color: #b3b3b3;
}



.navbarrightelement {
    position: relative;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.navbarrightelement:hover {
    color: white;
}

.navbarrightelement:active {
    opacity: 0.8;
}



.navbarrightelement::before {
    content: "";
    position: absolute;
    width: 100%;
    bottom: 3px;
    height: 2px;
    background-color:#EE9C35;
    border-radius: 20px;
    transform: scale(0);
    transform-origin: center;
    opacity: 0;
    transition: transform 300ms, opacity 300ms;
}

.navbarrightelement:hover::before {
    transform: scale(1);
    opacity: 1;
}

.activeelement {
    color: white !important;
}

.activeelement::before {
    transform: scale(1);
    opacity: 1;
}



.assdstext {
    font-size: 48px;
    font-weight: bold;
}



.logo {
    width: 60px;
}

.logo.animate {
    animation-name: spin;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

.logo.reverse {
    animation-name: spin;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-direction: reverse;
}

@keyframes spin {
    100% {
        transform: rotateY(360deg);
    }
}



.main {
    background-image: url("default.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
    color: white;
    font-size: 48px;
    z-index: 1;
    flex: 1;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #07263b;
    color: white;
}

.platform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 300px;
    text-decoration: none;
    background-color: #21577D;
    color: white;
    opacity: 0.8;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 5px 5px;
    transition: box-shadow 0.3s;
    
}


.platform:hover {
    box-shadow: 1px 1px 1px 1px #EE9C35, -1px -1px 1px 1px #EE9C35;
}

.platform:active {
    opacity: 0.6;
}


.platformimg {
    width: 50px;
}

.contact {
    color: white;
    font-size: 36px;
}