html {
    background-image:url(images/017C.jpg);
    font-family:"Silkscreen";
    color:aliceblue;
    text-decoration: none;
    }
    
@font-face {
  font-family: "Silkscreen";
  src: url("fonts/slkscr.ttf") format("truetype");
    }

body {
    text-decoration: none;
    margin: auto;
    }


#container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
  max-width: 1200px;
  margin-top: 1%;
    }

.homebutton {
    position:fixed;
    z-index:10;
    right:10px;
    bottom:0;
    background-image: url(images/starcolorpendant.png);
    }

.homebutton:hover{
    background-image: url(images/pendant_hover.png);
    }

.stickersleft {
    display: flex;
    flex-direction: column;
    width: 100px;
    margin: 1%;
    }

#statuscafe {
    padding: 3px;
    background-color: #ccd0eb;
    border: 3px inset #776ab5;
    width: 260px;
    color: midnightblue;
    }

#statuscafe-username {
    margin-bottom: .5em;
    background-color: midnightblue;
    color: aliceblue;
    padding: .05em;
    }

#statuscafe-username a {
    color: aliceblue;
    }

#statuscafe-content {
    margin: 0 1em 0.5em 1em;
    }

.stickersright {
    display: flex;
    flex-direction: column;
    width: 100px;
    margin: 1%;
    }
  
main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 720px;
    margin: 1%;
    background-color: #ccd0eb;
    border: 3px outset #776ab5;
    height: 750px
    }
    
.banner {
    display: flex;
    height: 30px;
    align-items: center;
    width: 100%;
    background-color: midnightblue;
    margin: 1%;
    padding: 1%;
    }
  
.left {
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
    width: 55%;
    margin: 1%;
    margin-top: 0;
    }
  
.basics {
    height: 210px;
    width: 100%;
    margin: 1%;
    }
  
.interests {
    display: flex;
    flex-wrap: wrap;
    flex-flow: column;
    height: 350px;
    width:100%;
    padding: 1%;
    margin: 2%;
    border: 3px outset #776ab5;
    }


.interestcontent {
    overflow-y: scroll;
    height: 100%;
    width: 100%;
    }
  
.right {
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
    width: 40%;
    background-color: blue;
    margin: 1%;
    }
  
.image {
    height: 500px;
    width: 100%;
    margin: 1%;
    border: solid;
    border-color: white;
    }

ul {
    list-style-image: url("images/25px-Tear-sharpened.png");
    margin: 0;
    }


.marquee {
    width: 95%;
    height: 20px;
    padding: 5px;
    padding-bottom: 2px;
    border-style: dashed;
    border-radius:10px;
    border-color: aliceblue;
    margin: 1%;
    display: flex;
    overflow: hidden;
    --gap: 1rem;
    gap: var(--gap);
    position: relative;
    user-select: none;
    justify-content: space-between;
    }

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: var(--gap);
    animation: scroll 10s linear infinite;  
    }
  
@keyframes scroll {
    from {
        transform: translateX(0);
        }
    
    to {
        transform: translateX(calc(-100% - 1rem));
        }
    }

footer {
    color:aliceblue;
    text-align: center;
    }