* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    height: 100vh;
    font-size: 14px;
}

body {
    background: linear-gradient(to top, #707070, #3d51ff);
    height: 100%;
}

.container {
    height: 100%;
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 30px;
    color: #fff;
}

a {
    text-decoration: none;
    color: #fff;
}

hr {
    border: 1px dashed #fff;
}

.btn-gradient {
    background: linear-gradient(to right, #eee, #999);
}

.btn-disabled {
    display: none !important;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header img {
    max-width: 30%;
    min-height: 150px;
    margin-bottom: 20px;
    border-radius: 50%;
}

header h1 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #fff;
}

header p {
    font-size: 1.2em;
    color: #eee;
}

section.btn-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

a.link button {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    border-radius: 2px;
    font-size: 1em;
    cursor: pointer;
    transition: .2s;
    width: 100%;
    min-height: 140px;
    max-height: 140px;
    text-align: center;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
    overflow: hidden;
    text-overflow: ellipsis;
}

a.link button span {
    color: #1f1f1f;
    font-weight: 600;
    margin-top: 10px;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    width: 100%;
}

a.link img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: fill;
}

a.link button:hover, footer a.btn-footer:hover {
    transform: scale(1.05);
    box-shadow: none;
}

footer {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0 10px;
    padding: 5px;
}

footer a.btn-footer {
    width: 60px;
    height: 60px;
    display: inline-block;
    font-size: 2em;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 10px;
    transition: .2s;
    border: 1px solid #000;
    color: #1f1f1f;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
}