.list {
padding-bottom: 20px;
}
a {
  text-decoration: none;
  color: #28415d;
    font-family: 'Gothic A1', sans-serif;
}

body {
   color: #837878;
    font-family: 'Gothic A1', sans-serif;
    margin: 6rem;
    font-size: 15px;
    background-color: #142130;

}

h2 {
    margin: 5em 0 .2em 0;
    letter-spacing: -.04em;
    color: white;
    display: inline-block;
    font-weight: 800;
    text-align: center;
    position: relative;

}
    small {
        font-size: 60%;
        color: white;
        position: absolute;
        font-weight: 800;
        right: 0;
        bottom: -20px;
        letter-spacing: -.02em;
        border-top: 2px solid hsla(0, 0%, 100%, .25);
        padding-top: 0.3em;
    }
.wrapper {
padding: 50px;
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    box-shadow: 0 20px 100px hsla(0, 0%, 0%, .18);
    margin-top: -1px;
    position: relative;
    max-width: 90%;
	min-width: 500px;
    background-color: #142130;
}
    ul {
        list-style: none;
        padding: 0;
        box-sizing: border-box;
        margin: 0;
        border: 10px solid;
      
    }
     li {
            cursor: pointer;
            padding: .6em .8em .45em 2.8em;
            font-size: 23px;
            font-weight: 700;
            transition: all 200ms ease;
            position: relative;
            letter-spacing: -.04em;
            line-height: 1.5;
            z-index: 9999;
            overflow: hidden;
           
        }
        .app-card {
	display: flex;
	align-items: center;
	background: #fff;
	box-shadow: 0 4px 20px rgba(0,0,0,.1);
	border-radius: 12px;
	padding: 15px;
	margin-bottom: 20px;
	transition: transform 0.2s;
}
.app-card:hover {
	transform: translateY(-3px);
}
.app-icon {
	width: 200px;
	border-radius: 12px;
	margin-right: 15px;
}
.app-info h3 {
	margin: 0;
	font-size: 20px;
	color: #28415d;
}
.links a {
	margin-right: 10px;
	color: #28415d;
	font-weight: 600;
	text-decoration: none;
}
.links a:hover {
	text-decoration: underline;
}
.app-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.app-link {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  background: #f0f0f0;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.app-link:hover {
  background: #142130;
  color: white;
}
