@font-face {
    font-family: "DINWeb";
    src: url("fonts/DINWeb.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "DINWeb";
    src: url("fonts/DINWeb-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "DINWeb";
    src: url("fonts/DINWeb-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}

html {
    background-color: #0e1413;
    background-image: url('/img/gradient.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    font-family:'DINWeb',helvetica,arial,sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.4;
    color: #3d3f3d;
    margin: 0;
}

* {
    box-sizing: border-box;
    position: relative;
}


.header {
    width: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 50px 47px 0 47px;
}


.header-logo {
    height: 50px;
    width: 72px;
    background-image: url(/img/logo.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
    flex-shrink: 0;
    flex-grow: 0;
    margin-right: 35px;
}

.header-address-bar {
    height: 50px;
    border-radius: 10px;
    background-color: white;
    color: #1D1D1B;
    flex-grow: 1;
    font-size: 37px;
    line-height: 1.6;
    padding-left: 16px;
}

.main {
    width: 100%;
    height: calc(100% - 100px);
    display: flex;
    align-items: stretch;
    padding: 113px 0 132px 177px;
}

.aside {
    width: 342px;
    flex-shrink: 0;
    flex-grow: 0;
}

.aside img {
    width: 100%;
    height: auto;
}

.bubble {
    flex-grow: 1;
    margin-left: 70px;
}

.bubble:after {
    content: '';
    display: block;
    background-image: url(/img/tail.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 200px;
    right: 0;
    width: 190px;
    height: 123px;
}

.bubble-content {
    width: calc(100% - 190px);
    height: 100%;
    background-color: rgba(255,255,255,0.15);
    border-radius: 45px;
    padding: 50px 20% 50px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 63px;
    letter-spacing: 0.02em;
}

.bubble-hello {
    padding-left: 4.3%;
    line-height: 1.2;
}

.bubble-hello.is-small {
    font-size: 40px;
}

.bubble-welcome {
    margin-bottom: 75px;
    padding-left: 4.3%;
    text-transform: uppercase;
}

.bubble-welcome.is-small {
    font-size: 40px;
}

.bubble-hello + .bubble-welcome {
    margin-bottom: 0;
    margin-top: 75px;
}

.bubble-logo {
    margin-top: 5px;
}

