/* Global CSS variables */
* {
    outline: 0;
    box-sizing: border-box;
}

/* fonts */
@font-face {
    font-family: 'Poppins Light';
    src: url('./font/poppins-light.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins Regular';
    src: url('./font/poppins-regular.woff2') format('woff2');
}

:root {
    font-family: 'Poppins Regular',sans-serif;
}

body {
    background-color: #fff;
    position: relative;
    margin: 0;
    padding: 0;
    height:100%;
}

body .wrapper.flex-controller {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    height: 100%;
    position: fixed;
    width: 100%;
}
body .wrapper.flex-controller .info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
body .wrapper.flex-controller .info img {
    max-width: 200px;
    width: 100%;
}
body .wrapper.flex-controller .info h1 {
    text-align: center;
    font-weight: bold;
    font-size: 2.4rem;
    color: #111;
}
body .wrapper.flex-controller .info h1 span {
    display: block;
    font-size: 1rem;
    font-weight: 300;
}
body .wrapper.flex-controller .info p {
    font-family: 'Poppins Light',sans-serif;
    color:#111;
    margin: 0 auto 0.5rem;
    text-align: center;
}

body .wrapper.flex-controller .info address {
    font-style: normal;
}