html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

body {
    background-color: rgb(66, 66, 66);
    color: rgb(212, 200, 216);

    display: flex;
    flex-direction: column;
}
.app_links_mobile{
	display:none;
	
}
.app_links_pc{
	display:flex;
}

.page-wrapper { flex: 1; }

.footer { background-color: rgb(38, 38, 38); }

.navbar .navbar-toggler {
    outline: none;
    color: rgb(212, 200, 216);
    font-size: 1.8rem;
}

.footer__links {
    display: flex;
    justify-content: flex-end;
}


@media only screen and (max-width: 600px) {
  .app_links_mobile{
		display:block;
	}
	.app_links_pc{
		display:none;
	}
}

@media (max-width: 768px) {
    .footer__links {
        /*justify-content: center;*/
        margin-top: 10px;
        flex-direction: column;
    }
	.h2, h2 {
		font-size: 1rem;
	}
	
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.send-btn, .skip-btn {
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    padding: 1rem 4rem;
    border-radius: 12px;
    margin: 0 15px;
}

.send-btn, .skip-btn {
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    padding: 1rem 4rem;
    border-radius: 12px;
    margin: 0 15px;
}

.send-btn { background-color: rgb(125, 211, 33); }

.skip-btn { background-color: rgb(65, 125, 247); }