body, html {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #121212;
    /* color: #ffffff;  */
    overflow: hidden;
}

header {
    font-size: 2em;
    font-weight: 600;
    color: #444444;
    margin: 30px auto 20px auto;
}

.container {
    overflow-y: auto;
    width: 80%;
    max-width: 960px;
    padding-bottom: 30px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.container::-webkit-scrollbar {
    display: none;
  }

.site {
    display: flex;
    justify-content: space-between;
    background-color: #1f1f1f; 
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    width: calc(100% - 20px);
}

.site img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
}

.site-description {
    display: block;
    padding: 10px;
    width: calc(100% - 260px);
}

.site-description h3 {
    margin: 0;
    font-size: 1.2em;
    font-weight: 400;
    color: #bbb;
}

.site-description p {
    margin: 5px 0 0 0;
    font-size: 0.9em;
    font-weight: 300;
    color: #999; 
}

.site:hover {
    background-color: #444444;
    transition-duration: 100ms;
}

a {
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    header {
        font-size: 1.5em;
    }
    .container {
        width: calc(100% - 40px);
        margin: 0 20px;
    }
    .site {
        margin: 20px 0;
    }
    .arrow {
        display: none;
    }
    .site-description {
        width: calc(100% - 130px);
        padding: 0;
    }
    .site-description h3 {
        font-size: 1.1em;
    }
}
