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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  overflow-x: hidden;
  max-width: 100%;
}
*
{
    box-sizing: border-box;
    font-family: Inter;
}


.main
{
    background-color: #000;
    padding: 40px;
    display: flex;
    align-items: center;
    background-image: url(./bg.png);
    /* background-size: 100%; */
    background-repeat: repeat;
    justify-content: center;
    height: 100vh;
    text-align: center;
    width: 100%;
}

.container
{
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin: auto;
}
.logo-img
{
    height: 120px;
    width: 120px;
    border-radius: 40px;
    overflow: hidden;
    text-align: center;
}

.header-text
{
    font-size: 1.2rem;
    color: #fff;
    max-width: 420px;
    font-weight: 500;
    margin: auto;
    line-height: 1.618;
    text-align: center;
}

.btn-container
{
    margin: 24px 0;
    margin-top: 40px;
    text-align: center;
}

.mob-text
{
    border: 0;
    border-radius: 6px;
    padding: 12px 24px;
    text-decoration: none;
    display: inline-block;
    
    color: #000;
    background-color: #fff;
    font-weight: 600;
    font-size: .95rem;
    box-shadow: 0px 3px 0px 0px #a3a3a3;
    transform: translateY(0);
    transition: all .15s ease-in-out;
}
.mob-text:hover
{
    background-color: #e3e3e3;
    transform: translateY(3px);
    box-shadow: 0px 0px 0px 0px #a3a3a3;
}

.xs-text
{
    color: #959595;
    margin-bottom: 8px;
    font-size: .85rem;
    letter-spacing: -.15px;
}
.email-text
{
    color: #fff;
    margin-bottom: 8px;
    text-decoration: none;
    font-size: .95rem;
    transition: all .15s ease-in-out;

}
.email-text:hover
{
    color: #e3e3e3;

}