/*
Theme Name: Sin Under Construction
Description: SinNetwork Under Construction
Version: 1.1
*/

html, body {
      margin: 0;
      padding: 0;
      background: #000;
      color: #fff;
      font-family: sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
h1 {
    font-size: 3em;
    color: #ff0055;
}
p {
    color: #aaa;
}
img {
    max-width: 60vw;
    max-height: 60vh;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.img-max-widht-social-media{
    max-width: 300px;
    height: auto;
}

.display-flex{display: flex;}
.display-flex-direction-column{flex-direction: column;}
.display-flex-direction-row{flex-direction: row;}
.display-flex-direction-row-justify-content-center{justify-content: center;}
.display-flex-direction-row-justify-content-space-between{justify-content: space-between;}
.display-flex-direction-row-justify-content-space-around{justify-content: space-around;}
.display-flex-direction-row-wrap{flex-wrap: wrap;}

.flex-responsive {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .flex-responsive {
    flex-direction: column;
    align-items: center;
  }
}
