@font-face {
    font-family: chalkboard;
    src: url("chalkboard-se-regular.ttf");
}

@font-face {
    font-family: chalkboard;
    src: url("chalkboard-se-bold.ttf");
    font-weight: bold;
}

body {
    background-color: #F7E9CB;
    color: rgb(246, 244, 227);
    font-family: chalkboard;
    font-size: 18px;
    margin: 0;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.container {
    background-color: #F7E9CB;
    margin: auto;

}

.front-box {
    width: auto;
}

@media only screen and (max-width: 600px) {
    .flex-row {
        display: block;
    }
    .flex-col {
        display: block;
    }

    .front-box {
        width: auto;
    }

    h1, img {
        margin: auto;
        display: flex;
        justify-content: center;
    }

    h2 {
        text-align: center;
    }

    .bio {
        margin: auto;
        display: flex;
        width: auto !important;
    }

    #front-side-col {
        width: auto !important;
    }

    #wip {
        max-width: 100% !important;
    }
}

.bio {
    align-items: center;
    justify-content: center;
}

.header {
    justify-content: center;
    width: 100%;
}

.banner {
    width: 100%;
}

.navbar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    outline: 2px solid #6b3e85;
    outline-offset: -2px;
    background-color: #B27ED0;
    width: 100%;
}

.navlink {
    width: 20%;
}

.navlink img {
    width: 100%;
    transform: rotate(0deg);
    transition: 0.3s;
    filter: drop-shadow(2px 2px 1px #28232354);
}

.forward img:hover {
    transform: rotate(-5deg);
}

.backward img:hover {
    transform: rotate(5deg);
}

h1 {
    text-align: center;
}

a {
    color: rgb(112, 234, 255);
    font-weight: bold;
    text-decoration-style: wavy;
}

.content {
    background-image: url(imgs/paw_tiles.png);
    background-repeat: repeat;
    max-width: 1400px;
    padding: 5px;
    margin: auto;
    border-radius: 0px 0px 5px 5px;
    border: solid #6b3e85;
    border-width: 0px 2px 2px 2px;
    padding-bottom: 5px;
}

.box {
    border-radius: 20px;
    border: solid 2px;
    padding: 5px;
    margin: 5px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(2px 2px 1px #28232354);
}

#small-logo {
    max-width: 15%;
    transition: 0.7s;
    filter: drop-shadow(2px 2px 1px #28232354);
}

#small-logo:hover {
    transform: rotate(720deg);
}

.intro-item {
    width: 40%;
    justify-content: center;
    text-align: center;
}

.red {
    background-color: #FA825F;
    border-color: rgb(193 79 74);
}

.yellow {
    background-color: #FFBF6D;
    border-color: rgb(218 112 89);
}

.green {
    background-color: #D0C87F;
    border-color: rgb(178 143 108);
}

.blue {
    background-color: #82A3CC;
    border-color: rgb(78 76 145);
}

.bio-link {
    color: rgb(112, 234, 255);
    text-decoration-style: wavy;
    font-weight: bold;
    font-size: 18px;
}

.bio-name {
    font-size: 24px;
    font-weight: bold;
}

.bio-img {
    width: 100%;
    filter: drop-shadow(2px 2px 1px #28232354);
}
