<script>{}</script>
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background-color: #E21033;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

header h1 {
    font-size: 1em;
}

nav {
    display: flex;
    gap: 15px;
}

nav a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    text-decoration: none;
    color: #FFC300;
}

section {
    padding: 20px;
    margin: 20px;
}

a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 1px;
    background-color: #666666;
    color: white;
}

.content {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 20px 0;
}

.arrow-link {
    text-align: center;
    margin-top: 20px;
}

.arrow-button {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #33CCFF;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    padding: 10px 20px;
    border: none;
    background-color: #fff;
    border: 2px solid #33CCFF;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.arrow-button:hover {
    color: #fff;
    background-color: #E21033;
    border-color: #E21033;
}

.arrow-img {
    width: 25px;
    height: 25px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.arrow-button:hover .arrow-img {
    transform: translateX(5px);
}

h2 {
    color: #431808;
}
