html, body {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
}
body {
    flex: 1;
    font-family: 'Lato', sans-serif;
    background-color: black;
    overflow-x: hidden;
}
.main {
    position: relative;
    width: 1000px;
    min-width: 1000px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 20px 100px 20px;
}
@media screen and (max-width: 999px) {
    .main {
        width: 100%;
        min-width: 90%;
        max-width: 90%;
    }
}
h1 {
    color: white;
    font-size: 48px;
}
@media screen and (max-width: 600px) {
    h1 {
        font-size: 22px;
    }
}
h2 {
    color: #009cde;
    font-size: 36px;
    margin-top: 80px;
}
@media screen and (max-width: 600px) {
    h2 {
        font-size: 18px;
        margin-top: 20px;
    }
}
p {
    margin-top: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
}
@media screen and (max-width: 600px) {
    p {
        font-size: 16px;
    }
}
a {
    font-weight: 900;
    color: rgba(255,89,0);
    text-decoration: none;
}
.logos {
    display: flex;
    justify-content: space-evenly;
    padding: 20px 0;
}
.logos img {
    width: auto;
    height: 125px;
}
@media screen and (max-width: 600px) {
    .logos img {
        width: auto;
        height: 75px;
    }   
}
.tech {
    display: flex;
    justify-content: space-evenly;
    padding: 20px 0;
}
.tech img {
    width: auto;
    height: 60px;
}
@media screen and (max-width: 600px) {
    .tech img {
        width: auto;
        height: 75px;
    }   
}
@media screen and (max-width: 500px) {
    .tech img {
        width: auto;
        height: 35px;
    }   
}
.bold {
    font-weight: 900;
    color: white;
}
.mini {
    position: relative;
    top: -20px;
    margin: 0;
    font-size: 14px;
}