* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: beige;
    height: 100%;
    font-family: Helvetica;
}

a {
    text-decoration: none;
    color: black;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    border-left: 3px solid rgb(221, 221, 204);    
}
   
::-webkit-scrollbar-thumb {
    background: beige; 
    border: 3px solid silver;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(221, 221, 204);
}

.topbar {
    display: flex;
    justify-content: center;  
    align-items: center;      
    position: relative;
    height: 100px;  
}

.toptext {
    font-size: 80px;
    padding-top: 20px;
}

.home {
    position: absolute;
    height: 30%;
    left: 20px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

.site {
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;      
}

.tb1 {
    position: absolute;
    width: 60%;
    background: rgb(246, 246, 239);
    border-radius: 40px;
    border: 4px solid rgb(221, 221, 204);
}

.section {
    margin: 20px;
    background-color: beige;
    border: 4px solid rgb(221, 221, 204);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.sectionHeader {
    background: none;
    border: none;
    font-size: 40px;
    font-weight: bold;
    height: 60px;
    position: relative;
    border-radius: 15px;
}

.sectionHeader:hover {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.1);
}

#InterestsHeader {
    border-bottom: none;
}

#IdentityInfo {
    display: none;
    flex-direction: column;
    padding: 1rem;
}

#InterestsInfo {
    display: none;
    flex-direction: row; 
    border-top: 4px solid rgb(221, 221, 204);
}

#FutureInfo {
    display: none;
    flex-direction: column;
    padding: 1rem;
}

#IdolsInfo {
    display: none;
    flex-direction: column;
    padding: 1rem;
}

#InterestsList {
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    border-right: 4px solid rgb(221, 221, 204);
    gap: 10px;
}

.InterestsItem {
    background: none;
    padding: 10px;
    border-radius: 1rem;
    border: 4px solid rgb(221, 221, 204);
}

.InterestsItem:hover {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.1);
}

#InterestsBox {
    width: 100%;
}

#ComputersBtn {
    background: rgba(0, 0, 0, 0.1);
}

.Info {
    background: rgb(246, 246, 239);
    border-end-end-radius: 17px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    height: 400px;
    width: 100%;
    overflow-y: scroll;
}

.Link {
    color: blue;
}

.Link:hover {
    text-decoration-line: underline;
}

.Link:visited {
    color: rgb(180, 0, 180);
    text-decoration-line: underline;
  }

.ImageCol {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}

.ImageInCol {
    height: 100%;
    border-radius: 20px;
    border: 4px solid rgb(221, 221, 204);
}

.IdolImage {
    height: 100%;
    border-radius: 20px;
    border: 4px solid rgb(221, 221, 204);
    display: flex;
    flex-direction: column;
}

.IdolInCol {
    margin: 0.4rem;
    height: 100%;
    border-radius: 20px;
    border: 4px solid rgb(221, 221, 204);
}