body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #470a62;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 550px;
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #ffffff;
    color: #333333;
}

.logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo img {
    max-width: 350px;
}

header {
    text-align: left;
}

h1 {
    font-size: 40px;
    margin: 5px 0;
    color: #470a62;
}

h2 {
    font-size: 28px;
    margin: 5px 0;
    color: #470a62;
}

.content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.left,
.right {
    flex: 1;
}

.right p, .left p {
    margin: 10px 0;
}

span.fas-placeholder {
    padding-left: 16px;
}

.linkedin-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff8400;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.linkedin-button:hover {
    background-color: #d16e00;
}

footer {
    text-align: center;
    margin-top: 40px;
}

i.fas, span.text-prefix {
    color: #ff8400;
    font-weight: bold;
}

@media screen and (max-width: 650px) {
    .container {
        width: 80%;
    }

    .content {
        flex-direction: column;
    }

    .left,
    .right {
        flex: none;
        width: 100%;
    }

    .logo img {
        max-width: 90%;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 16px;
    }
}