@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600;700&display=swap');

:root {
    /* --fontMain: 'Fira Code', monospace; */
    --fontMain: 'Ubuntu', monospace;

    --colorVerde1: #05F228;
    --colorVerde2: #04BF20;
    --colorVerde3: #02730A;
    --colorVerde4: #012603;
    --colorBlackMain: #0D0D0D;
    --colorBlack: #000;
    --colorWhite: #FFF;
    --colorGray: #707070;

    /*COLORS HITNUMBER*/
    --colorRosaHN: #C22C70;
    --colorAzulHN: #00B2A9;
    --colorAmareloHN: #FED65E;

    scroll-behavior: smooth;
}

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

    font-family: var(--fontMain);
    /* color: var(--colorWhite); */
}

html {
    scroll-behavior: smooth;
}

body {
    background-image: url("/assets/ubuntu/images/wallpaper.jpg");
    background-repeat: repeat;
    /* background-position: center -80px; */
    background-size: cover;
    overflow-y: hidden;
}

/*NAVBAR - START*/
.navbar {
    background-color: rgb(242, 242, 242, 0.2);
    width: 70px;
    height: 100vh;
    position: fixed;
    padding: 5px 5px 15px 5px;
    z-index: 1;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: top;
    justify-items: center;
    align-items: center;
    /*opacity: 0;*/
    transition: ease 0.5s;
    overflow: auto;
}

.navbar:hover {
    transition: ease 0.2s;
}

.navbar > a {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    justify-items: center;
    align-items: center;
    text-decoration: none;
}

.navbar > a > div > p {
    font-size: 12px;
    text-align: center;
    font-weight: bold;
    color: var(--colorWhite);
}

.img_social {
    width: 45px;
    transition: ease 0.2s;
}

.img_social:hover, .img_social_Profile:hover {
    transform: scale(1.05);
    transition: ease 0.2s;
}

.img_social_Profile {
    width: 45px;
    transition: ease 0.2s;
    border-radius: 50%;
    border: 2px solid var(--colorBlack);
}
/*NAVBAR - END*/
