body {
    background-color:#5c068c;
	color:#FFFFFF;
	font-family:'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.home .description {
	border-radius: 5px;
	margin: 0 0 1rem 0;
}

a {
    color: #FFFFFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 460px;
    margin: 0 auto;
    text-align: center;
	padding: 2rem 0;
}

.capsule {
    width: 100%;
	max-width: 100%;
    max-height: 460px;
    object-fit: cover;
    margin: 0;
	display: block;
	border-radius: 5px 5px 0 0;
}

.description {
    font-size: 1.1rem;
    color: #cccccc;
    margin: 0 0 1rem 0;
    padding: 1rem;
    background-color: #000000;
	margin: 0;
	display: block;
}

.details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 0;
	display: block;
}

.details div {
    background: #2e2e2e;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    font-size: 0.95rem;
}

.links-container {
    width: 100%;
    margin: 0 0 1rem 0;
}

.links-list {
	background: #fff;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.25);
	width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0 0 5px 5px;
}

.link-container {
	display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1rem;
    border-top: 1px solid #f6f6f6;
    border-bottom: 1px solid #f6f6f6;
    overflow: hidden;
}

.link-container:hover {
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	cursor: pointer;
}

.link-logo-container {
	height: 2.25rem;
	display: flex;
	align-items: center;
}

.link-logo {
    pointer-events: none;
    float: left;
    height: 2.25rem;
}

.link-website {
    float: left;
    font-size: 1.1em;
	color: #000000;
    width: 100%;
    max-width: 12em;
    text-align: left;
	margin: 0.25rem 0;
    font-weight: 700;
    word-break: break-word;
}

.link-button {
    text-decoration: none;
    float: right;
    padding: 0.5rem 1rem;
    background: #fff;
    color: #333;
    border: 1px solid rgb(218 218 218);
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
}

.link-button:hover {
    background: rgb(60, 60, 60);
    border: 1px solid transparent;
    color: #fff;
}

.social-links-container {
	background: #efefef;
}

.social-link {
    display: inline-block;
    padding: 0 0.15rem;
    text-decoration: none;
    color: inherit;
    margin: 0.75rem 0.25rem;
}

.social-link img {
	vertical-align: middle;
}

.cta-button {
    background-color: #66c0f4;
    color: #1c1c1c;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
}

.cta-button:hover {
    background-color: #84d0ff;
}

footer {
    font-size: 0.85rem;
    margin: 0;
    padding: 0 0 1rem 0;
}

footer p {
	margin: 0;
}

footer a {
	font-weight: 600;
}

@media screen and (max-width: 460px) {
  .capsule, .links-list {
	  border-radius: 0;
  }
  
  .container {
	  padding: 0;
  }
}