#windowAbout {
    display:flex;
    flex-direction: column;
    width: 65vw;
    height: 75vh;
    justify-self: center;
    background-color: var(--midPurple-color);
    border-radius: 5px;
    border: 2px solid var(--midLitePurple-color);
    margin-top: 5vh;
}

#topBarAbout {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: var(--midLitePurple-color);
    margin: 1vh 1vh;
    width: inherit;
}

#topBarLeft {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1vw;
    margin-left: 1vw;
    color: var(--litePurple-color);
    font-size: 2.5vh;
    font-family: windows;
}

#windowAboutBtns {
    display: flex;
    gap: .5vw;
    margin-right: 2vw;
    
}

.btn {
    color: var(--litePurple-color) ;
    background-color: var(--darkPurple-color) ;
    border: 1px solid var(--litePurple-color);
    height: 25px;
    width: 25px;
    border-radius: 1px;
}

.btn:hover {
    color: var(--litePurple-color);
    background-color: var(--darkerPurple-color) ;
    cursor: pointer;
}


#aboutContent {
    display: block;
	margin-left: 1vw;
	margin-right: 1vw;
    border: 2px solid var(--midLitePurple-color);
    border-radius: 3px;
	height: 65vh;
	font-family: courier new;
	overflow-y: scroll;
    overflow-x: none;
	flex-wrap: wrap;
    padding: 1vh 4vw;
    background-color: rgba(10, 0, 30, 0.932);
}

#bodytext {
    color: white
}

#flexTextDiv {
    display: flex;
    flex-direction: row;
    align-items: center;
    
    gap: 3vh;
}
#aboutMeGif {
    flex: 1;
}

#aboutMeGif img {
    width: 28vw;
   
}

#flexTextBlock {
    flex: 3.5;
}

#dogPictures {
    display: flex;
    flex-direction: row;
    gap: 3vh;
}

.rooPic img {
 height: 30vh;
}

