@import url('https://fonts.googleapis.com/css2?family=Port+Lligat+Slab&display=swap');

body {
    margin: 0px;
    width: 100%;
    height: 100vh;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #101010;
    background-image: url('/assets/images/background.png');
    background-size: cover;
    font-family: 'Port Lligat Slab';
    font-style: normal;
    font-weight: normal;
}

html {
    max-width: 100%;
    width: 100%;
    min-height: 100%;
}

.logo {
    width: 96px;
    height: 68px;
    background-image: url('/assets/images/logo_black_transparent.png');
    background-repeat: no-repeat;
    background-size: contain;
}

.header {
    padding: 10px 40px;
    flex-grow: 0;
}

.content__left__description {
    font-size: 55px;
    color: #fff;
}

.content {
    flex-grow: 1;
    padding: 10px 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.content__right {
    min-width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content__right__image {
    background-image: url('/assets/images/right__image.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 397px;
    height: 415px;
}

.content__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 750px;
}

underline {
    text-decoration: underline;
}