*{
 margin: 0;   
}

body {
    display: grid;
    height: 100vh;
}

a {
    text-decoration: none;    
}

html { 
  background: url(images/background.png) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on February 10, 2022 */

@font-face {
    font-family: 'nerissemibold';
    src: url('font/neris-semibold-webfont.woff2') format('woff2'),
         url('font/neris-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'nerislight';
    src: url('font/neris-light-webfont.woff2') format('woff2'),
         url('font/neris-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'nexa_boldregular';
    src: url('font/nexa_bold-webfont.woff2') format('woff2'),
         url('font/nexa_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/* styles */

.neris-semibold {
    font-family: "nerissemibold";
}

.neris-light {
    font-family: "nerislight";
}

.nexa-bold {
    font-family: "nexa_boldregular";
}

.logo {
    width: 350px;
    height: auto;
}

.mobile-section {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.footer {
    display: flex;
    align-items: center;
    color: white;
    height: 3rem;
    justify-content: center;
    align-self: end;
    text-align: center;
    padding: 0.5rem;
}

.main, .sub-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.name-job {
    display: flex;
    gap: 0.5rem;
}

.gap {
    gap: 1rem;
}

.white, .white * { 
    color: white;
}

.green {
    color: #48AB72;
}

.title {
    font-size: 5rem;
}

.content-desktop {
    display: flex;
    gap: 1rem;
}

.content-mobile {
    display: none;
}


@media only screen and (max-width: 600px) {

    .logo {
        width: 275px;
        height: auto;
    }

    .footer {
        margin-bottom: 5rem;
    }
    
    .content-desktop {
        display: none;
    }

    .content-mobile {
        display: block;
    }

    .title {
        font-size: 4rem;
        line-height: 4rem;
    }
}