* {
    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);
}

#popup {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

.popupBox {
    width: 400px;
    height: fit-content;
    background: beige;
    border: 4px solid rgb(221, 221, 204);
    border-radius: 40px;
    padding: 20px;
    text-align: center;
}

.message {
    font-size: 20px;
    width: 100%;
    padding-bottom: 20px;
}

.updates {
    background: white;
    text-align: left;
    padding: 5px;
    width: 100%;
    height: 150px;
    background: rgb(246, 246, 239);
    border: 4px solid rgb(221, 221, 204);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
}

.updatesLink {
    text-decoration-line: underline;
    color: blue;
}

.popupBtn {
    background: beige;
    border: none;
    margin-top: 20px;
    border-radius: 25%;
    width: fit-content;
    font-size: 20px;
    padding: 10px;
}

.popupBtn:hover {
    cursor: pointer;
    background: rgb(221, 221, 204);
}

.site {
    height: 100%;
    display: flex;
    align-items: center;
}

.linkbox {
    display: flex;
    padding-left: 10%;
}

.linkdec {
    background-color: black;
    width: 10px;
    height: auto;
}

.linklist {
    padding: 2%;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 550px;
}

.links {
    background: none;
    border: none;
    font-size: 70px;
    transition: 0.8s;
    text-align: left;
}

.links:hover {
    padding-left: 20px;
}

.picture {
    margin-left: 100px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: right;
}