/* =Reset default browser CSS
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

*:focus {
  outline: none;
}

table, caption, tbody, tfoot, thead, tr, th, td {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0px;
  vertical-align: top; }

h1, h2, h3, h4, h5, h6 {
  clear: none;
  font-weight: normal; }

ol, ul {
  list-style: none; }

blockquote {
  quotes: none; }

blockquote:before, blockquote:after {
  content: '';
  content: none; }

del {
  text-decoration: line-through; }

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0; }

a img {
  border: none; }

sup {
  vertical-align: super;
  font-size: 50%; }

a {
  outline: none;
  color: #009bd5; }

.clear {
  clear: both; }

  /* GLOBAL CSS
-------------------------------------------------------------- */

html, body{
  font-family: 'Montserrat', sans-serif;
  font-size:15px;
  font-weight: 300;
  height: 100vh;
  width: 100vw;
  color:white;
}

strong{
  font-weight: 700;
}

.main{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.center{
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1440px;
}

@media (min-width: 800px) {
  .responsive{display: none;}

  .desktop h1 img{
    display: block;
    margin: auto;
    max-width: 100%;
    height: auto;
  }
  
  .desktop h2{
    padding: 25px 0;
    text-align: center;
    border-top:1px solid white;
    border-bottom:1px solid white;
    font-size:24px;
    text-transform: uppercase;
    margin: 5vh 0;
    letter-spacing: 10px;
  }
  
  .desktop .skills{
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size:25px;
    text-transform: uppercase;
    letter-spacing: 10px;
  }
  
  .desktop .skills p{
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .desktop .contact{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:20px;
    letter-spacing: 5px;
    margin-top: 15vh;
  }
  
  .desktop .contact .pipe{
    display: block;
    width: 1px;
    height: 25px;
    background-color: white;
    margin:0 15px;
  }
}

@media (max-width: 800px) {
  .desktop{
    display: none;
  }

  .responsive h1{
    margin-bottom:10vh;
  }

  .responsive h1 img{
    display: block;
    margin: auto;
    max-width: 70%;
    height: auto;
  }

  .responsive h2{
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 5px;
  }

  .responsive .separate{
    max-width: 20px;
    height: auto;
    display: block;
    margin: 5vh auto;
  }

  .responsive .contact{
    text-align: center;
    font-size:18px;
    letter-spacing: 0px;
  }

  .responsive .skills{
    margin-top: 10vh;
    text-align: center;
    text-transform: uppercase;
    font-size:16px;
    letter-spacing: 5px;
  }
}

.bg{
  position: absolute;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  left:0;
  bottom:0;
  background-image: url(./slk-nettoyage-bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: auto 125%;
}

@media (min-width: 800px) {
  .bg{
    background-size: auto 165%;
  }
}

.bg::before{
  content:'';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
}