

* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 50;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
    color: #ffffff;
}

body {
    font-size: 100%; /* equivalent to 16px */
    width: 100vw;
    min-height: 100vh;
    background-image: url("website_background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    background-size: clamp(1000px, 100%, 1500px) auto;
}
html,body {
    background-color: #0b1f27;
}
.text-box-wrapper {
    margin-top: 50vh;
    width: 100%;
    float: left;
    position: relative;
}
.text-box {
    text-align: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 600px;
    max-width: 90%;
}
.text-box-title {
    font-size: 3rem; /* 3 x 16 = 48px */
    font-weight: 500;
    text-align: center;
    width: 100%;

}
.text-box-subtitle {
    font-size: 1.625rem; /* ~26px */
    text-align: center;
    font-weight: 200;
    margin-bottom: 20px;
    width: 100%;
}
.text-box-content {
    font-size: 1.0rem; /* = 16px */
    text-align: justify;
    font-weight: 200;
    width: 100%;
}
.logo-box {
    margin-top: 100px;
    margin-bottom: 40px;
    width: 100%;
    float: left;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
}
.logo {
 margin: 20px;
}
.logo img {
    max-width: 160px;
}
.logo a {
    cursor: pointer;
}