.about-image-container {
    display: block;
    position:relative;
}

.about-image-container:before {
    width: 100%;
    height: 100%;
    display:block;
    content:'';
    position:absolute;
    -moz-box-shadow:inset 0px 0px 2px 2px rgba(255,255,255,1);
    -webkit-box-shadow:inset 0px 0px 2px 2px rgba(255,255,255,1);
    box-shadow:inset 0px 0px 2px 2px rgba(255,255,255,1);
}

.about-headshot {
    object-fit: cover;
    max-width: 100%;
    display: block;
}

.my-name {
    font-family: var(--logo-thin);
    /* font-family: 'Poltawski Nowy', serif; */
}

.about-text {
    text-align: left;
    font-weight: 300;
}

.about-text:last-child {
    margin-bottom: 0;
}

#buttons-about {
    display: flex;
    flex-flow: row wrap;
    align-content: space-around;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.shiny {
    position:absolute;
    color: white;
    position: relative;
    border: none;
    background-image: radial-gradient(100% 100% at 100% 0, #7552ad 0, #3e0b5c 100%);
    border-radius: 5px;
    font-weight: 200;
    font-family: var(--button-font);
    cursor: pointer;
    overflow: hidden;
    margin: auto;
    white-space: nowrap;
    text-align: center;
    display: inline-block;
    box-shadow: rgba(0, 0, 0, .3) 0 5px 15px;
}
.shiny::after {
    content: "";
    position: absolute;
    top: calc(var(--y, 0) * 1px - 60px);
    left: calc(var(--x, 0) * 1px - 40px);
    width: 100px;
    height: 100px;
    background: radial-gradient( circle, var(--gradient-color-2) 15%,  rgba(62, 11, 92, 0.25) 60%); 
    opacity: 0;
    -moz-transition: opacity 200ms ease; 
    -o-transition: opacity 200ms ease; 
    transition: opacity 200ms ease;
    -webkit-transition: opacity 200ms ease;
}
.shiny:hover::after {
  opacity: 0.4;
}

.logo-text-pt1 {
    font-family: var(--logo-thick);
}
.logo-text-pt2 {
    font-family: var(--logo-thin);
    font-style: italic;
}
.logo-text-pt3 {
    font-family: var(--logo-thin);
    font-weight: 600;
}

/* Mobile settings */
.about-image-container:before {
    border-radius: 50%;
}
.about-image-container {
    width: 80%;
    margin: 0 auto;
}
.about-headshot {
    border-radius: 50%;
}
.my-name {
    font-size: 1.9em;
    margin: 30px 0 20px;
}
.about-text {
    font-size: 1.6em;
    margin: 20px 0;
    line-height: 1.5;
}
#buttons-about{
    margin: 40px auto;
    gap: 30px;
}
.shiny {
    font-size: 1.6em;
    padding: 7.5px;
    width: 160px;
}
/* Tablet settings */
@media all and (min-width: 600px) {
    .about-image-container:before {
        border-radius: 0;
    }
    .about-image-container {
        float: left;
        width: 30%;
        margin: 0px 40px 20px 0;
    }
    .about-headshot {
        border-radius: 0;
    }
    .my-name {
        font-size: 2em;
        margin: 0 auto 30px
    }
    .about-text {
        font-size: 1.7em;
        line-height: 1.6;
        margin: 30px 0;
    }
    #buttons-about{
        margin: 50px auto;
    }
    .shiny {
        font-size: 2.25em;
        width: 25%;
    }
    .shiny {
        border-radius: 7.5px;
        font-size: 1.75em;
        padding: 7.5px;
        width: 33%;
        min-width: 170px;
        max-width: 200px;
    }
}
/* Laptop settings */
@media all and (min-width: 992px) {
    #buttons-about{
        margin: 60px auto;
    }
    .my-name {
        font-size: 2.15em;
        margin: 0 auto 40px
    }
    .about-text {
        font-size: 1.8em;
        line-height: 1.75;
        margin: 40px 0;
    }
    #buttons-about{
        margin: 60px auto;
    }
}