body {
    display: flex;
    font-family: 'Bitcount Grid Double', sans-serif;
    border: 0.25rem solid black;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

html {
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

.SideBar {
    background-color: rgb(154, 154, 221);
    width: 300px;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 4rem;
    border-right: 0.25rem solid black;

}

/* Style each section */
.About {
    color:blueviolet;
    text-align: center;
    
}

.info {
    text-align: center;
}

.Links {
    display: flex;
    flex-direction: column;
    padding: 0;
    font-size: 2.225rem;
    font-family: 'Inter', sans-serif;
}

ul {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    list-style-type: none;
    padding-left: 1rem;
}


.Icons {
    display: flex;
    flex-direction: rows;
    max-height: 80px;
    overflow: hidden;
    margin-top: auto;
    justify-content: center;
    margin: 2rem;
    gap: 1rem;
    
}

p {
    font-family: 'Inter', sans-serif;
}
/*     */
.Main {
    background-color: antiquewhite;
    min-height: 100vh;
    flex-grow: 1;
}

#Content {
    text-align: center;
}

.Socials {
    width: 2rem;
    height: 2rem;
}

/* Hovering and link clean ups  */
a:link,
a:visited {
  color: black; /* or whatever your normal link color is */
  text-decoration: none;
}

a:hover {
    text-decoration: underline;
    text-decoration-color: white;
}