* {
    font-family: sans-serif;
    text-decoration: none;
    list-style: none;
}

body {
    background-color: black;
    color: white;
}

h1, a, i {
    font-size: 30px;
}

.container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    align-items: center;
    color: white;
}

.content ul {
    display: flex;
}

.content li a {
    margin: 30px;
}

.content i {
    display: flex;
}

a {
    color: blueviolet;
    transition: all 1s ease;
}

a:hover {
    color: orange;
}

@media (min-width: 1400px) {
    .close-icon {
        display: none;
    }
    main {
        display: none;
    }
}

@media (max-width: 1400px) {
    .content {
        position: fixed;
        top: 0;
        left: 0;
        display: none;
    }
    .remove {
        display: none;
    }
    .centrate li {
        margin: 15px;
        text-align: center;
    }
    .close-icon {
        display: flex;
        cursor: pointer;
    }
    header {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
}

.h1 {
    text-align: center;
}

img {
    border-radius: 15px;
}

header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 30px;
}

header p a i {
    font-size: 40px;
}

p a:hover {
    color: orange;
    transition: 0.5s ease;
}

section {
    text-align: center;
}

section p {
    font-size: 30px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#21d4fd, #b721ff);
    border-radius: 100px;
}

html {
    scroll-behavior: smooth;
}

fa-solid fa-bars close-icon {
    cursor: pointer;
}













