body {
    margin: 0;
    font-family: Cabin;
    background-image: linear-gradient(45deg, #242a53, #441136);
}
.banner {
    position: relative;
    width: 100%;
    height: 200px;
    background-image: url('Background.jpg');
    background-size: cover;
    background-color: rgb(132, 0, 255);
    border-bottom: 1px solid #ddd;
    background-position: center;
}
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 42px;
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
.profile-image {
    position: absolute;
    bottom: -75px;
    left: 20px;
    width: 15%;
    max-width: 200px;
    aspect-ratio: 1;
    height: auto;
    border-radius: 50%;
    border: 3px solid white;
    background-color: rgb(255, 0, 0);
    background-image: url('profile-picture.jpg');
    background-size: cover;
    background-position: center;
}
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}
.columns {
    display: flex;
    width: 100%;
    justify-content: center;
}
.column {
    width: 90%;
    padding-top: 50px;
}
.section {
    padding: 20px 20px 0 20px;
    margin: 10px 0;
    background-color: #11041f;
    color: rgb(230, 230, 230);
    border: 1px solid #ddd;
    border-radius: 5px;
}
.custom-link {
    color: #efba6c;
    text-decoration: none;
}
.custom-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}