body {
    background: url('images/swirl.jpg');
    background-color: rgb(32, 32, 36);
    color: white;
    font-family: "Brush Script MT", "Comic Sans MS", Arial;
}

input {
    color: white;
    background-color: black;
    border: 2px solid;
    border-color: rgb(46, 46, 53);
    border-radius: 6px;
}
button {
    color: white;
    background-color: rgb(32, 32, 36);
    border: 4px solid;
    border-color: rgb(46, 46, 53);
    border-radius: 6px;
}

a:link {
    color: pink;
  }
  
  a:visited {
    color: rgb(188, 124, 196);
  }
  
  a:hover {
    color: hotpink;
  }
  
  a:active {
    color: blue;
  }

.line {
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 3%;
    justify-content: center
}

.centered {
    text-align: left;
    display: table;
    margin: 0 auto;
  }

.pfGroup {
    text-align: center;
    border-radius: 20px;
    position:relative;
    width: 75%;
    height: 50%;

    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    margin-inline: auto;
    
    background-color: rgba(0, 0, 0, 0.5);
    padding: 3%;
}
.portfolio {
    text-align: center;
    border-radius: 12px;
    position:relative;
    width: 25%;
    height: 50vh;
    overflow:scroll;
    display:block;

    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    margin-inline: auto;
    
    background-color: rgba(23, 20, 32, 0.75);
    padding: 2%;

    box-shadow: 0px 0px 0px 0px rgb(75, 0, 136) inset;
    transition: all 0.5s;
}
.portfolio:hover {
    background-color: rgba(11, 10, 12, 0.75);
    box-shadow: 0px 0px 0px 10px rgb(42, 12, 56) inset;
    transition: all 0.15s;
}

@keyframes title {
    0% {
        color: rgb(255, 200, 200)
    }
    100% {
        color: white;
    }
}