html {
    height: 100%;
    width: 100%;
    background-color: #000000;
    color: #fefefe;
}

#main {
    display: none;
    cursor: pointer;
    text-align: center;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    font-size: 1.5em;
    line-height: 1.5;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    padding: 10px 20px;
    border-radius: 17px;
    background-color: #ff0066;
    color: white;
    cursor: pointer
}

#body {
    height: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "AvenirNext", "Verdana", Arial, sans-serif;
}

.type_app img {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);

}

.type_content img {
    width: 220px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.type_content .btn {
    color: white;
    cursor: pointer;
    background-color: #ff0066;

}

.type_app_background {
    display: none;
}

.type_content_background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    filter: blur(10px);
    opacity: 0.3;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.7);


}

.type_content_background img {
    max-width: 100%;
}

.type_content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 400px;
    color: white;
    margin: 20px;
}

h1 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
    color: #d9d9d9;
    padding: 0 10px;
}

#desc {
    margin-top: 10px;
    margin-bottom: 25px;
    font-size: 12px;
    max-width: 800px;
    color: #d9d9d9;
    padding: 0 10px;
}