/* FONTS */
@font-face {
    font-family: IBMPlexSans-Light;
    src: url(../assets/fonts/IBMPlexSans-Light.ttf);
}

@font-face {
    font-family: IBMPlexSans-Regular;
    src: url(../assets/fonts/IBMPlexSans-Regular.ttf);
}

@font-face {
    font-family: IBMPlexSans-Medium;
    src: url(../assets/fonts/IBMPlexSans-Medium.ttf);
}

@font-face {
    font-family: IBMPlexSans-SemiBold;
    src: url(../assets/fonts/IBMPlexSans-SemiBold.ttf);
}

@font-face {
    font-family: IBMPlexSans-Bold;
    src: url(../assets/fonts/IBMPlexSans-Bold.ttf);
}


/* GENERAL */
html {
    height: 100%;
    font-size: 14px;
}

body {
    font-weight:300;
    font-family: "IBMPlexSans-Light", sans-serif;
    background-color: #ffffff;
    height: 100%;
    overflow: auto;
}

#wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    font-family: "IBMPlexSans-SemiBold", sans-serif;
}


/* HEADER */
#header {
    display: flex;
    flex-direction: row;
    padding-left: 16px;
    padding-right: 16px;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    height: 60px;
    background-color: #fff;
    width: 100%;
    z-index: 59;
}

#logo-container {
    display: flex;
    flex-direction: row;
    cursor: pointer;
}

#logo-container #logo{
    display: block;
    height: 1.6rem;
    margin-right: 8px;
}

#logo-container h1 {
    font-size: 1.6rem;
}

#logo-container h1 span {
    font-family: "IBMPlexSans-Light", sans-serif;
}


/* CONTENT */
#content {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content-inner {
    display: flex;
    flex-direction: column;
    gap: 80px;
    text-align: center;
}

#content-title{
    font-family: "IBMPlexSans-Semibold", sans-serif;
    font-size: xxx-large;
}

#content-info {
    font-size: larger;
    font-family: "IBMPlexSans-Light", sans-serif;
}

#content-link {
    display: inline-block;
    cursor: pointer;
    font-family: "IBMPlexSans-SemiBold", sans-serif;
}