@import url('https://fonts.googleapis.com/css2?family=Mountains+of+Christmas:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&display=swap');

h1 {
    background-color: red;
    padding: 50px;
    text-align: center;
    font-family: Berkshire Swash, sans-serif;
    color: white;
    font-size: 50px;
}

.profile {
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
}

.profile img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-right: 20px;
}

.profile-content h2 {
    font-family: Berkshire Swash, sans-serif;
    font-size: 35px;
    margin-bottom: 5px;
}

.profile-content p {
    font-family: Mountains of Christmas, sans-serif;
    font-size: 25px;
    margin-top: 5px;
    font-weight: bold;
}

.profile-list {
    display: flex;
    flex-direction: column;
}

footer {
    background-color: red;
    padding: 20px;
    text-align: center;
    font-family: Berkshire Swash, sans-serif;
    color: white;
    font-size: 20px;
    line-height: 8px;
}

a {
    color: white;
}