* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

*:focus {
    outline: none;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    background: #03024f;
    background: -webkit-gradient(linear, left top, right top, from(#03024f), color-stop(35%, #090f79), to(#00d4ff));
    background: linear-gradient(90deg, #03024f 0%, #090f79 35%, #00d4ff 100%);
}

.container {
    width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.container .site-content {
    text-align: center;
    color: #fff;
    margin-bottom: 1rem;
}

.container ul li {
    background-color: #fff;
    border-radius: .5rem;
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    margin-bottom: 2rem;
}

.container ul li .logo {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}
.container ul li .logo img {
    width: 200px;
}

.container ul li .detail {
    padding-left: 1rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.container ul li .detail .site-name {
    font-weight: 800;
    font-size: 1.5rem;
}

.container ul li .detail div:nth-child(2) {
    font-weight: 700;
    font-size: 1rem;
    color: #a3a3a3;
}

.container ul li .detail div:nth-child(2) span {
    font-size: 1.25rem;
    color: #05065C;
}

.container ul li .go-site {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.container ul li .go-site a {
    color: #05065C;
    padding: .5rem;
    border: 3px solid #05065C;
    border-radius: .5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.container ul li .site-rank {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 4px solid #05065C;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 800;
    color: #05065C;
}

footer .contianer {
    padding: 0px;
}

footer .contianer p  {
    color: #fff;
    text-align: center;
}
@media (max-width: 768px) {
    .container {
        width: 100%;
    }
    .container ul li {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .container ul li .detail {
        text-align: center;
    }
    .container ul li .detail {
        margin-bottom: 1.5rem;
    }
    .container ul li .detail div:nth-child(2) {
        display: flex;
        flex-direction: column;
    }
}

.content-area
    {
    background: white;
    padding: 20px;
    border-radius: 10px;

}


/*# sourceMappingURL=main.css.map */