:root {
    --background: #f8e2ca;
    --text: #000;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1rem;
}

.mt-2 {
    margin-top: 4px;
}

.mt-4 {
    margin-top: 8px;
}

.mt-8 {
    margin-top: 12px;
}

.mb-8 {
    margin-bottom: 12px;
}

body {
    background-color: var(--background);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
}

#main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#profile {
    position: absolute;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    border: 4px solid #fff;
    object-fit: cover;
    object-position: center;

    -webkit-box-shadow: 9px 13px 46px -15px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 9px 13px 46px -15px rgba(0, 0, 0, 0.75);
    box-shadow: 9px 13px 46px -15px rgba(0, 0, 0, 0.75);
}

#card {
    padding: 0px 24px 80px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
}

.rounded {
    border-radius: 50%;
}

.title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 10px 0;
}

.subtitle {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 3px;
    font-weight: 500;
    margin: 10px 0;
    text-transform: uppercase;
    line-height: 0.5;
    text-align: center;
}

#action_link {
    width: 100%;
}

.action_button {
    background-color: #db825e;
    padding: 16px;
    border: none;
    width: 100%;
    font-size: 1rem;
    margin-top: 10px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    -webkit-box-shadow: 9px 13px 46px -15px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 9px 13px 46px -15px rgba(0, 0, 0, 0.75);
    box-shadow: 9px 13px 46px -15px rgba(0, 0, 0, 0.75);
    margin-bottom: 12px;
}

.action_button:hover {
    background-color: #bf6e4e;
}

.action_button:active {
    background-color: #d66e44;
    transform: scale(0.98);
}

#banner {
    width: 100%;
    height: 200px;
    background: url("/public/banner.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#instagram_icon {
    width: 30px;
    height: 30px;
    margin-top: 12px;

    cursor: pointer;
}

ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 12px;
    gap: 12px;
}

ul li {
    text-align: center;
    background-color: #d0ad93;
    padding: 16px;

    border: 2px solid #707056;
}

.underline {
    text-decoration: underline;
}

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

a:visited {
    color: #000;
}

button {
    color: #000;
}

button:visited {
    color: #000;
}