@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,700;1,400&display=swap');

* {
    font-family: Arial, Helvetica, sans-serif;
    user-select: none;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    background-color: rgb(32, 30, 30);
    height: 100vh;
}

.menu {
    background-color: rgb(39, 36, 36);
}

.body {
    background-color: rgb(32, 30, 30);
    overflow-x:visible
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    align-items: center;
    gap: 30px;
}

.effect {
    color: rgb(255, 0, 76);
    text-shadow: -3px 4px 2px rgba(133,255,230,0.6);
}


.logo {
    font-size: 5em;
    text-align: center;
    background-color: rgb(17, 17, 17);
}

nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    height: 65vh;
}

.nav {
    width: 100%;
    height: 40px;
    background-color: transparent;
    border: none;
    font-family:Arial, Helvetica, sans-serif;
    color: rgb(155, 155, 155);
    cursor: pointer;
    display: inline-block;
}

.nav::after {
    content: '';
    width: 0px;
    height: 1px;
    display: block;
    background-color: rgb(155, 155, 155);
    transition: 0.3s;
}

.nav:hover::after {
    width: 100%;
}

.selected {
    color: white;
}

.myprojects {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 30px;
    grid-auto-flow: row;
    grid-auto-rows: 1fr;
    height: 85vh;
    padding-right: 33px;
    font-family:Arial, Helvetica, sans-serif;
    color: rgb(155, 155, 155);
    overflow-x: scroll;
}

::-webkit-scrollbar {
    display: none;
}

.project {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 20px;
    font-family:Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 350px;
    padding: 10px;
    border: rgb(54, 53, 53)1px solid;
}

h1 {
    font-family:Arial, Helvetica, sans-serif;
}

a {
    color: rgb(155, 155, 155);
    text-decoration: underline;
}

.link-logo {
    color: rgb(255, 0, 76);
    text-shadow: -3px 4px 2px rgba(133,255,230,0.6);
    text-decoration: none;
}

article {
    background-color: rgb(39, 36, 36);
    padding: 20px;
    border-radius: 10px;
}

.html-tag {
    grid-column: span 3;
    color: #5D9CC9;
}

img {
    width: 350px;
}


.project-btn {
    width: 200px;
    height: 50px;
    background-color: transparent;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1em;
    color: rgb(0, 250, 175);
    border: rgb(0, 250, 175) 1px solid;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.project-btn:hover {
    background-color: rgb(190, 255, 236);
    color: black;
}

.disclaimer {
    font-family:Arial, Helvetica, sans-serif;
    color: #4A5642;
}

.link-comment {
    color: #4A5642;
}

i {
    color: white;
}

.btn-menu {
    display: none;
    background-color: transparent;
    border: none;
}

@media screen and (min-width: 1400px) {
    .myprojects {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1400px) {
    .myprojects {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 600px) {
    body {
        display: grid;
        grid-template-columns: 1.3fr 9fr;
    }

    
    nav {
        display: flex;
    }
}

@media screen and (max-width: 600px) {
    body {
        display: flex;
        flex-direction: column;
    }

    img {
        width: 200px;
    }

    .project {
        margin-top: 5px;
        margin-bottom: 5px;
        margin-left: 20px;
        font-family:Arial, Helvetica, sans-serif;
        display: flex;
        justify-self: center;
        font-size: 12px;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 275px;
        padding: 10px;
        border: rgb(54, 53, 53)1px solid;
    }


    .btn-menu {
        display: inline;
    }

    nav {
        display: none;
        height: 200px;
    }
}