@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');

* {
    background-color: #0a0a0a;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, footer {
    color: #ffffff;
}

footer {
    border-top: 2px solid #3c3c3c;
    padding-top: 10px;
    margin-top: 20px;
    font-size: 14px;
}

footer p:hover {
    text-decoration: underline;
}

.footerInfo h3 {
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
}

nav {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 2px solid #3c3c3c;
    font-size: 17px;
}

.logo img {
    height: 90px;
    width: 90px;
}

nav ul {
    display: flex;
    list-style: none;
    margin-left: 20px;
}

nav li {
    margin: 0 15px;
}

.tabText {
    position: relative;
    font-size: 20px;
}

.tabText::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease-in-out;
}

.tabText:hover::after {
    width: 100%;
}
