body {
background: #ffffff;
background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(43, 188, 255, 1) 33%, rgba(56, 145, 228, 1) 69%, rgba(68, 88, 201, 1) 100%);
    font-family: Frutiger;
    src: url(Frutiger.ttf);
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Main container (4:3 feel) */
#container {
    width: 800px;
    margin: 20px auto;
    background-color: #2BBCFF;
    border: 4px solid #ffffff;
}

/* Header */
#header {
    background-color: #3891E4;
    padding: 10px;
    border-bottom: 3px solid #ffffff;
}

#home-link {
    color: #00ffff;
    text-decoration: underline;
    font-size: 14px;
}

#header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

#profile-pic {
    width: 150px;
    height: 150px;
    margin-right: 10px;
}

#header h1 {
    margin: 0;
    font-size: 28px;
    text-shadow: 2px 2px #000000;
}

/* Main section */
#main {
    display: flex;
    padding: 15px;
    border-bottom: 3px outset #ffffff;
}

#left-image img {
    width: 200px;
    border: 3px outset #ffffff;
}

#bio {
    margin-left: 20px;
}

#bio h2 {
    margin-top: 0;
    color: #4458C9;
}

/* Interests */
#interests {
    padding: 15px;
    border-bottom: 3px outset #ffffff;
    text-align: center;
}

#interests img {
    width: 600px;
    border: 3px outset #ffffff;
    margin-bottom: 4px;
}

#interests h2 {
    color: #ffff00;
}

#interests ul {
    list-style-type: none;
    text-align: center;
    display: inline-block;
}

#interests li {
    border: 3px outset #ffffff;
}

/* Footer */
#footer {
    background-color: #3891E4;
    padding: 10px;
    text-align: center;
}

#footer a {
    color: #00ffff;
    text-decoration: underline;
    font-weight: bold;
}