* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #202020;
    /* height: 100vh; */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Acme', sans-serif;
    font-weight: bold;
    font: optional;
    transition: 2s ease;
    border: relative;
}


/* this is for the navagation */

.miniNav {
    position: fixed;
    width: 100%;
    /* left: 50%; */
    z-index: 1;
    transition: 2s ease;
    margin: 10px;
}

.miniNav-container {
    /* make the items in rows */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 50%;
    margin: 0 auto;
}

.miniNav-item {
    /* make the items in rows */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    /* background-color: #202020; */
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: 1s ease;
    margin-left: 10px;
}

.miniNav-item a {
    text-decoration: none;
    color: #fff;
    /* make items inline */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.miniNav-item i {
    /* margin-right: 10px; */
}

.miniNav-item p {
    margin-left: 10px;
}

.miniNav-item:hover {
    background-color: #202020;
}


/* if the width is less than 500px */

@media screen and (max-width: 850px) {
    .miniNav-container {
        width: 60%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 700px) {
    .miniNav-container {
        width: 70%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 600px) {
    .miniNav-container {
        width: 80%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 550px) {
    .miniNav-container {
        width: 85%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 500px) {
    .miniNav p {
        display: none;
    }
}


/* footer */

.social {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.social i {
    font-size: 25px;
    margin-right: 10px;
    color: #fff;
    text-decoration: none;
}

.social a {
    text-decoration: none;
}

.social i:hover {
    /* transition */
    transition: 0.5s ease;
    color: #000;
    /* glow */
    text-shadow: 0 0 20px #fff;
}

.copyright {
    position: absolute;
    top: 97%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 400px) {
    .copyright {
        font-size: 10 px;
    }
    h1 {
        font-size: 20px;
    }
}