* {
    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 {
    width: 90%;
    background: rgb(246, 246, 239);
    border-radius: 40px;
    border: 4px solid rgb(221, 221, 204);
    columns: 4;
    padding: 20px;
}

.photo {
    width: 100%;
    border-radius: 30px;
    border: 4px solid rgb(221, 221, 204);
    margin-bottom: 20px;
}

