body {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: Tahoma, sans-serif;
}

body * {
    box-sizing: border-box;
}

html {

}

.box {
    width: 350px;
    height: 100px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
}

.logo {
    width: 100px;
    height: 100px;
    background: url("assets/logo.png") no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
}

.description {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    justify-content: center;
}

.description .name {
    font-size: 32px;
}

.description .slogan {
    font-size: 18px;
}
