html {
    /*overflow: hidden;*/
    touch-action: none;
    content-zooming: none;
}

body {
    /*position: absolute;*/
    margin: 0;
    padding: 0;
    /*background: #000;*/
    /*width: 100%;*/
    min-height: 100%;
}

#canvas-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

#canvas {
    position: absolute;
    /*background: #000;*/
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*cursor: pointer;*/
}

#content {
    position: absolute;
    min-height: 99%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.titles-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#header-container {
    margin-top: 10px;
}

#header-logo {
    width: 200px;
}

.title-container {
    width: 450px;
    position: relative;
    margin-bottom: 30px;
}

.title {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    line-height: 60px;
}

.sub-title {
    font-family: 'Lato', sans-serif;
    font-size: 21px;
    margin-top: 20px;
}

.title2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    line-height: 40px;
}

.title2-not_first {
    margin-top: 50px;
}

.sub-title2 {
    font-family: 'Lato', sans-serif;
    font-size: 21px;
    margin-top: 20px;
}

#title3-container {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

#title3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
}

#sub-title3 {
    display: flex;
    justify-content: center;
    font-family: 'Lato', sans-serif;
    font-size: 21px;
    margin-top: 25px;
}

#footer-container {
    justify-content: center;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    margin-bottom: 0;
    /*top: 10vw;*/
}

#footer-space {
    width: 20px;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 34px;
    border: 2px solid limegreen;
    color: limegreen;
    border-radius: 30px;
    text-decoration: none;
    padding-top: 1px;
}

.button:hover {
    background-color: limegreen;
    color: white;
}

a {
    color: black;
}

a:hover {
    color: limegreen;
}


