* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

::selection {
    background: rgba(0, 95, 133, 0.7);
    color: white;
}

header {
    width: 100%;
    height: 60px;
    background: rgb(8, 0, 58);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10%;
    transition: 0.5s;
}

header:hover {
    height: 70px;
}

header .logo-box {
    display: flex;
    text-decoration: none;
}

header .logo-box img {
    width: 18px;
    /* transform: translate(0px, 4px); */
}

header .logo-text {
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 550;
    transform: scale(1, 1.3);
    padding: 7px 10px 7px 0px;
    transition: 0.5s;
}

header .logo-text:hover .logo-text,
header .logo-box:hover .logo-text {
    color: rgb(235, 29, 106);
    font-size: 14px;
}

header .login-link {
    color: white;
    font-size: 12px;
    padding: 7px 10px;
    transition: 0.5s;
}

header .login-link:hover {
    text-decoration: none;
    font-size: 14px;
}

footer {
    background: rgb(8, 0, 58);
    transition: 0.5s;
}

footer:hover {
    padding-top: 12px;
    padding-bottom: 12px;
}

footer .f-box {
    display: flex;
    justify-content: center;
    margin: 0px 10%;
    background: rgba(0, 0, 0, 0);
}

footer .f-box .f-box1 {
    width: 300px;
    min-height: 200px;
    margin-right: 10px;
    background: none;
}


footer .f-box .f-box1 ul li {
    list-style: none;
    text-align: center;
    padding: 1px 0px;
}

footer .f-box .f-box1 ul li a {
    color: rgb(218, 218, 218);
    text-decoration: none;
    font-size: 12px;
    transition: 0.2s;
}

footer .f-box .f-box1 ul li a:hover {
    color: white;
    text-decoration: underline;
}

footer .f-box .f-box1 ul li:first-child {
    margin-top: 12px;
}
footer .f-box .f-box1 ul li:last-child {
    margin-bottom: 12px;
}

footer .f-box .f-box2 {
    width: 300px;
    min-height: 200px;
    background: none;
}

footer .f-box .f-box2 ul li {
    list-style: none;
    text-align: center;
}

footer .f-box .f-box2 ul li a {
    color: rgb(218, 218, 218);
    text-decoration: none;
    font-size: 12px;
    transition: 0.2s;
}

footer .f-box .f-box2 ul li a:hover {
    color: white;
    text-decoration: underline;
}

footer .f-box .f-box2 ul li:first-child {
    margin-top: 12px;
}
footer .f-box .f-box2 ul li:last-child {
    margin-bottom: 12px;
}

.fa-link, .fa-up-right-from-square {
    font-size: 8px;
    padding-right: 2px;
    transform: translate(0px, -1.5px);
}