/* Global */
.meow-script-regular {
    font-family: "Meow Script", cursive;
    font-weight: 400;
    font-style: normal;
}

.sour-gummy-font {
    font-family: "Sour Gummy", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
}

body {
    margin: 0;
    background-color: #FEE4EE;
    font-family: "Sour Gummy", 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

h3 {
    text-align: center;
    margin-top: 0;
}

/* Re-usable elements */
/* Bordered box */
.bordered-box {
    width: 200px;
    height: 200px;

    border-image-source: url(./images/Border.png);
    border-image-width: 20px;

    border-image-slice: 20 fill;

    border-image-repeat: round;
    border-image-width: 20px;

    margin: 10px;
    padding: 20px;

    position: relative;

    margin: auto;
}

.bordered-box-fill {
    background-color: #fff;
    position: absolute;
    top: 8px;
    left: 10px;
    right: 10px;
    bottom: 12px;
    z-index: -1;
    filter: drop-shadow(0px 0px 20px #fff);
}

/* Pickupable */
.pickupable-centered {
    width: auto;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    display: block;
}

/* Individual pieces */
/* Header */
header {
    width: 100%;
    height: 250px;
    background: url(./images/noisy-gradient-circle-export.svg);
    display: flex;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #fff;
}

.title {
    font-family: "Meow Script", cursive;
    font-weight: 400;
    font-size: 150px;
    margin: auto;
    text-align: center;
    color: #fff;

    text-shadow: 0 0 30px #fff;
}

/* Divider */
.divider {
    width: 100%;
    height: 40px;
    background: url(./images/Ribbon.png);
    margin-top: -10px;

    filter: drop-shadow(0px 10px 20px #fff);
}

/* About me box */
#about-me {
    width: 240px;
    height: auto;
    padding: 30px;
    padding-top: 15px;
    padding-bottom: 20px;
}

/* Website list */
#websites-list {
    width: 260px;
    text-align: center;
    position: relative;
}

#websites-list p {
    text-align: left;
}

/* Things I do / cards */
#things-i-do {
    width: 350px;
    height: 310px;
}

.card {
    background-color: #FBB2C5;
    border-radius: 30px;
    width: auto;
}

.card h4 {
    text-align: center;
    margin-bottom: 5px;
    margin-top: 5px;
}

.card-image {
    display: block;
    border-radius: 30px;
    width: 300px;
}

/* Things I like */
#things-i-like {
    height: 215px;
}

/* Socials */
#socials {
    height: 440px;
}