.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #181414;
    color: white;
    display: flex;
    justify-content: flex-end; /* Aligns items to the right */
    align-items: center;
    height: 50px;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}



.first{
    font-size: 50px;
    font-family: "ClashdisplayL", sans-serif;
    margin: 0;
    padding-right: 6px;
}
.last {
    font-size: 50px;
    font-family: "ClashdisplayL", sans-serif;
    font-style: italic;
    margin: 0;
    padding-right: 8px;
}
@media screen and (max-width: 768px) {
    .first{
        font-size: 11vw;
    }
    .last {
        font-size: 11vw;
    }
}
