@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700&display=swap');

body,html{
    padding:0;
    margin:0;
    box-sizing: border-box;
    font-size: 20px;
}

*{
    padding: 0;
    margin: 0;
    clear: both;
    outline: none;
    border: none;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    text-decoration: none;
    text-transform: none;
    color:inherit;
}

h1,h2,h3,h4,h5,h6{
    font-weight: 700;
    font-size: 1em;
    text-align: left;
}

pre, p{
    font-size: 0.9em;
    text-align: left;
    white-space: pre-wrap;
}

.main-wrapper{
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    padding:10px;
    color:#fff;
    background:url("../assets/bulb.jpg") no-repeat;
    background-size: 50%;
    background-position: left;
    background-color: #241E20;
    overflow: hidden;
}

.info-wrapper{
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding:10px;
    max-width: 50%;
}

.links-wrapper{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.links-wrapper a{
    margin:10px;
    cursor: pointer;
    flex: 1;
}