p {
    margin-bottom: 0px;
    margin-top: 0px;
}
body {
    margin: 0px;
    background-color: #58583f;
}
.mainlayout {
    background-color: #58583f;
    width: 100%;
}
.innerlayout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* height: 100vh; */
}
.welcometotext {
    color: #ccac69;
    font-family:sans-serif;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    margin-top: 30px;
}
.logo_img {
    height: 250px;
   margin: 0px auto;
}
.underconstructiontext {
    font-size: 18px;
    color: #ccac69;
    text-align: center;
}
.addresstext {
    color: #ccac69;
    font-size: 16px;
    margin-top: 15px;
    text-align: center;
}
.infotext {
    color: #ccac69;
    font-size: 16px;
    margin-top: 5px;
    text-align: center;
}
.instaqr_img {
    height: 150px;
   margin: 0px auto;
   margin-top: 30px;
   margin-bottom: 50px;
}

/* Mobile devices (phones) */
@media (max-width: 767px) {
    .welcometotext {
        font-size: 18px;
        margin-top: 20px;
    }
    .logo_img {
        height: 180px;
    }
    .underconstructiontext br {
        display: none;
    }
    .underconstructiontext {
        font-size: 16px;
    }
    .addresstext, .infotext {
        font-size: 14px;
    }
    .instaqr_img {
        height: 130px;
    }
  }
  
  /* Tablet devices */
  @media (min-width: 768px) and (max-width: 1024px) {
    
  }