body {
    background-color: black;
    position: relative;    
}

p {
    font-family: 'Amatic SC', cursive;
    font-size: 175%;
    text-align: center;
}

button {
    background-color: white;
    color: black;
    border: 2px solid white;
    border-radius: 8px;
    width: 100%;
}

#background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 150%;
}

a {
    /* font-family: 'Teko', sans-serif; */
    color: rgba(241, 238, 238, 0.74);
    text-transform: capitalize;
}

.hidden {
    display: none;
}

.img-wrap {
    position: relative;
    height: 200px;
    width: 227px;
}

.img-description {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    visibility: hidden;
    opacity: 0;
    font-size: xx-large;
}

.img-wrap:hover .img-description {
    visibility: visible;
    opacity: 1;
    position: relative;
    top: 150;
}

#about-me-images {
    height: 80%;
    width: 80%;
    padding: 15%;
    border-radius: 50%;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

#profile-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#name-container {
    display: flex;
    justify-content: space-evenly;
    align-items: baseline; 
}


