*{
    margin: 0px;
}

/*my favorite color rgb(11, 36, 116) */

body {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 600;
    background-color:  rgb(11, 36, 116);
    color: white;
}

.hover:hover {
    cursor: pointer;
}

.image {
    width: 100%;
    height: 100%;
}

.bugmenu {
    width: 40px;
}

h2 {
    margin-bottom: 20px;
}

h3 {
    margin-bottom: 10px;
    margin-left: 8px;
}



.project {
    background-color: white;
    color: black;
    margin-bottom: 30px;
}

.preview {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 600;
    padding: 1px 35px;
    margin-bottom: 20px;
    margin-left: 8px;
    height: 50px;
    border-radius: 25px;
    border: none;
    color: white;
    background-image: linear-gradient(to right,hsl(136, 65%, 51%),hsl(192, 70%, 51%));
}

.footer {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
    padding-top: 50px;
}

#twitter {
    margin-left: 30px;
    margin-right: 30px;
}

#copyrights {
    text-align: center;
}



@media (max-width:768px) {
    
    .header {
        display: flex;
        flex-direction: column;
        margin: 5px 10px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: white;
        color: black;
        margin: 10px 100px;
        padding: 30px 1px;
        border-radius: 5px;
    }

    .desktop-nav-links {
         display: none;
    }

    #projects {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .logo-bugmenu {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .container {
        display: flex;
        flex-direction: column;
    }
}

@media (min-width:768.1px) {
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 10px 30px;
    }

    .nav-links {
        display: flex;
        position: absolute;
        right: 30px;
    }

    #projects {
        margin-left: 20px;
        margin-right: 20px;
    }

    .desktop-nav-links {
        display: flex;
        color: white;
    }

    #projects-desktop {
        margin-left: 20px;
        margin-right: 20px;
    }

    .bugmenu {
        display: none;
    }

    .container {
        display: flex;
        justify-content: space-between;
    }

    .project {
        flex: 0.33;
    }
}