body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    margin-top: 30px;
    color: rgb(40, 40, 40);
}

header {
    margin: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

@media (min-width: 768px) {
    header {
        flex-direction: row;
        max-width: 800px;
        gap: 20px;
        justify-content: center;
        text-align: left;
    }
    
    .header-text {
        width: 310px;
    }
    
    header img {
        width: 250px;
        height: 250px;
    }
}

header img {
    border-radius: 50%;
    width: 250px;
    height: 250px;
}

.header-text {
    font-size: 1.2em;
    width: auto;
    max-width: 100%;
}

.header {
    font-size: 2em;
    margin: 0;
}

.header-text .subheader {
    font-weight: lighter;
    color: rgb(156, 156, 156);
    margin-top: 10px;
}

.buttons {
    margin-top: 15px;
}

.buttons img {
    width: 40px;
    height: 40px;
    margin-right: 5px;
}

hr {
    margin-top: 30px;
}

.ctitle {
    font-size: 1.8em;
}

.container {
    margin: auto;
    max-width: 800px;
    margin-top: 20px;
    padding: 10px;
}

/* Faded HR element */
.faded-hr {
    border: none;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgb(150, 150, 150) 20%,
        rgb(150, 150, 150) 80%,
        transparent 100%
    );
    margin: 20px 0;
}