* {
    margin: 0;
    padding: 0;
    color: white;
}

html, body {
    width: 100%;
    overflow-x: hidden; 
}

body {
    font-family: Arial, sans-serif;
    background-color: #121212;
}

header {
    background-color: #202020;
    height: 8vh;
    border-bottom: 1px solid #393939;
    display: flex;
    align-items: center;
    width: 100%;
}

.container {
    width: 100%;
    padding: 0 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topleft {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.topleft img {
    height: 5vh;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 7.8vh;
}

.topright {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.topright img {
    height: 5vh;
}

.toprighttxt {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    font-size: 12px;
}

.search {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

nav {
    background-color: #202020;
    font-weight: bold;
    width: 100%;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    gap: 3vw;
    padding: 10px 0;
}

a{
    text-decoration: none;
}

footer{
    padding: 5vh 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer ul{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    list-style-type: none;
    height: 100px;
}

.unlimitedfooter{
    display: flex;
    align-items: center;
    gap: 20px;
}

.apps{
    display: flex;
    flex-wrap: wrap;
    width: 180px;
    gap: 19px;
}

.links{
    display: flex;
    justify-content: space-between;
    width: 400px;
}

@media screen and (max-width: 576px) {
    header {
        height: auto;
        padding: 2vw 0;
    }

    .container {
        flex-wrap: wrap;
        padding: 0 5vw;
    }

    .topleft .txt {
        display: none;
    }

    .toprighttxt, .unlimited {
        display: none;
    }

    .logo img {
        height: 6vh;
    }

    nav{
        overflow-x: auto;
        padding: 0 10px;
    }

    nav ul {
        gap: 12vw;
        font-size: 15px;
    }

    footer{
        flex-direction: column;
        gap: 30px;
    }

    .none{
        display: none;
    }

    .links{
        width: 95vw;
    }
}