*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

body {
    width: 100vw;
    height: 100vh;
}

.viewport {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.first-bg {
    background: url(../img/background02.svg);
    background-size: cover;
    background-position: center;
}

.header {
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

nav {
    padding: 40px 40px 0 40px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

nav a {
    text-decoration: none;
    color: white;
    font-family: address-sans-pro, sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    /* font-style: normal; */
    margin: 0 20px;
    padding: 10px 5px 5px 5px;
    font-size: 24px;
}

nav a:hover {
    border-bottom: 4px solid white;
}

.logo {
    padding: 40px 0 0 40px;
    display: flex;
    flex-direction: row;
}

.logo a {
    text-decoration: none;
}

.logo a img {
    width: 100px;
    height: 100px;
}

.logo-text {
    padding: 20px 0 0 0;
}

.logo-subtitle, .logo-title {
    display: block;
    color: #fff;
    font-family: address-sans-pro-condensed, sans-serif;
    font-weight: 100;
    font-style: normal;
    padding: 0 0 0 5px;
}

.logo-title {
    font-size: 44pt;
    line-height: 44pt;
}

.logo-subtitle {
    font-size: 24pt;
    line-height: 24pt;
    /* position: relative;
    top: 20px; */
}

.container {
    display: flex;
    flex-direction: row;
    width: 60vw;
    height: 80%;
    justify-content: center;
    align-items: center;
    gap: 0px;
    /* padding: 0 200px; */
}

.left-column {
    display: flex;
    flex-direction: column;
    color: white;
    padding: 0 50px;
    /* width: 500px; */
    height: 500px;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
}

.left-column h1 {
    font-family: address-sans-pro, sans-serif;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.left-column p {
    font-family: Tahoma, sans-serif;
    font-size: 16px;
    letter-spacing: 0.05em;
    font-weight: 200;
    line-height: 1.8em;
}

.left-column a {
    text-decoration: none;
    color: #cba6e3;
}

.left-column a:hover {
    color: #d845bf;
}

.right-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* width: 500px; */
    height: 500px;
    padding: 0px  50px;
    margin: 0;
    background-color: rgba(255,255,255,0.1);
}

.right-column img {
    width: 500px;
    margin: 0;
    padding: 0;
}