@charset "UTF-8";

body {
    padding: 0;
    margin: 0;
    font-family: "PingFang SC"
}

#container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#header {
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: row;
    height: 60px;
    align-items: center;
    justify-content: center;
    background-color: #fcfcfc;
    border-bottom: #f1f2f3 1px solid;
}

.header-top {
    display: flex;
    flex-direction: row;
}
.header-names{
    display: flex;
    flex-direction: column;
}
.header-name {
    font-size: 48px;
    font-weight: 600;

}

.header-subtitle {
    font-size: 36px;
    font-weight: 300;
}

#main {
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

#player {
    width: 100%;
    display: flex;
    flex-direction: column;

}

.appnames {
    margin-top: 200px;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;

}

.platname {
    font-weight: 300;
    font-size: 26px;
    color: #62615C;
}

.download-img {
    margin-top: 25px;
}

.docs {
    margin: 40px 0px 0px 20px;
}

.app {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.app a {
    display: block;
}

#footer {
    color: #62615C;
    font-size: 16px;
    margin-bottom: 50px;
    margin-top: 100px;

}

.lastline {
    font-weight: 300;
    padding: 0 0px;
}

a {
    color: #999999 !important;
    font-weight: 300;
    text-decoration: none;
}

a:hover {
    color: #666;
}

@media (max-width: 767.75px) {

    .header-name {
        font-size: 36px;
        font-weight: 500;
    }

    .header-subtitle {
        font-size: 24px;
        font-weight: 300;
    }
    .main{
        width: 90%;
    }
    .header-top {
        width: 90%;
        padding-left: 5%;

    }
    .catcontainer {
        position: relative;
        top: -130px;
        z-index: 100;
    }
    .platname {
        font-size: 20px;
    }
    .blackcat {
        width: 157px;
        height: 130px;
    }
    .appnames {
        margin-top: -150px;
    }
    .lastline{
        font-size: 16px;
    }
    .docs{
        font-size: 16px;
    }
    .catcontainer {
        width: 90%;
        padding-left: 5%;
    }
}

@media (min-width:768px) and (max-width: 1079px) {
    .header-top {
        width: 75%;
    }
    .main{
        width: 75%;
    }
    .catcontainer {
        width: 75%;
    }
}

@media (min-width: 1080px) {
    .header-top {
        width: 1080px;
    }
    .main{
        width: 1080px;
    }
    .catcontainer {
        width: 1280px;
        padding-left: 128px;
    }
}