@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html, body {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Poppins';
    font-size: 13px;
    color: #606060;
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.bg {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 0;
    height: 100vh;
}

.page-bg{
    background-image: url('../images/bg.png') no-repeat center center fixed; 
}

.logo {
    width: 85%;
    height: 100%;
    z-index: 1000;
}

a,
a:visited {
    color: #E72F3A;
    text-decoration: none;
}

    a:focus,
    a:hover,
    a:active {
        color: #E72F3A;
        text-decoration: underline;
    }

.inline-link {
    text-decoration: none;
    color: #606060 !important;
    font-weight: 400;
}

    .inline-link:hover {
        color: #606060 !important;
        text-decoration: underline;
        font-weight: 400;
    }


.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 24px;
    left: 0;
    z-index: 1030;
    text-align: center;
}

.prevent-select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
html, body{
font-size: 6px;
}
}

body{
    background-image: url('../images/bg.svg'); 
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
}

