@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');


/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img, svg {
	max-width: 100%;
	height: auto;
}

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}


html {
    width: 100vw;
    overflow-x: hidden;
}

body {
    background: #232530;
    font-family: Montserrat;
}

#app {
    max-width: 450px;
    margin: auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 60px;
    padding: 0px 10px;
}

header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 200vw;
    height: 2px;
    background: linear-gradient(45deg, #ff980a, #ff800a);
    animation: animateLine 3s ease-in-out forwards;
    opacity: 0;
}

@keyframes animateLine {
    0% {
        transform: scaleX(0);
        opacity: 1;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

header .logo {
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

header .logo img {
    height: 42px;
}

header .right {
    
}

header .right button {
    background: linear-gradient(45deg, #ff980a, #ff800a);
    padding: 8px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
}

.apps {
    padding: 0px 10px;
    margin-bottom: 40px;
}

.apps .title {
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-top: 20px;
    /* margin-left: 20px; */
    margin-bottom: 5px;
}

.appblock {background: #1c1e24;border-radius: 10px;padding: 20px;display: flex;gap: 15px;flex-direction: column;max-width: 600px;margin: auto;border: 2px solid #ff8f0a24;margin-bottom: 40px;position: relative;margin-top: 10px;}

.appblock .top {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    align-items: flex-start;
}

.appblock .top .left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.appblock .top img {
    height: 42px;
    border-radius: 100px;
}

.appblock .top .web {
    
}

.appblock .top .web button {
    background: linear-gradient(45deg, #ff980a, #ff800a);
    padding: 5px;
    border-radius: 5px;
    height: 30px;
}

.appblock .top .web svg {
    width: 20px;
}


.appblock .desc {
    color: #ffffff;
    font-size: 14px;
    white-space: normal;
    word-wrap: break-word;
    overflow: hidden;
    max-width: 100%;
    height: 72px;    
}


.appblock .links {
    color: #ff8f0a;
    font-size: 13px;
    display: flex;
    gap: 5px;
}

.appblock .links svg {
    width: 12px;
    fill: #ff8f0a;
    transform: rotate(180deg);
}

.appblock .users {    animation: users 1s ease-in-out forwards ;border: 2px solid #ff8f0a24;background: #1c1e24;border-radius: 0 0 10px 10px;position: absolute;color: #fff;display: flex;gap: 5px;padding: 7px;border-top: none;bottom: -31px;right: 15px;font-size: 10px;z-index: -1;}

@keyframes users {
    0% {
        bottom: 20px;
    }
    100% {
        bottom: -31px;
    }
}

.appblock .users span {
    width: 25px;
    text-align: right;
}


.appblock .users svg {
    height: 13px;
    width: 13px;
}

.devs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    position: relative;
}
/* 
.devs::after {
    content: "";
    position: absolute;
    bottom: 25px;
    top: 0px;
    left: -80%;
    width: 70vw;
    height: 2px;
    background: linear-gradient(45deg, #ff980a, #ff800a);
    animation: animateLine1 3s ease-in-out forwards;
    opacity: 1;
    margin: auto;
}


@keyframes animateLine1 {
    0% {
        opacity: 1;
        left: -80%;
    }
    50% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    99% {
        opacity: 1;
        left: 150%;
    }
    100% {
        
    }
}
*/

.dev {
    z-index: 1;
}

.dev img {
    border-radius: 10px;
    border: 2px solid #ff8f0a24;
}

.dev div {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}

footer {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    bottom: 10px;
    gap: 15px;
    margin: auto;
    margin: 0 10px;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

footer svg {
    height: 20px;
    fill: #fff;
}