.card-container{
    width: 80%;
    min-width: 80%;
    max-width: 97%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
    background-color: blueviolet;
    padding-left: 0.7em;
    padding-right: 0.7em;
    font-size: 20px;
}
.card{
    background-color: beige;
    height: 300px;
    margin-top: 0.7em;
    margin-bottom: 0.7em;
    display: block;
}
@media screen and (min-width:800px) {
    .card-container{
        display: flex;
        justify-content: center;
    }
    .card{
        width: 33.3%;
        background-color: beige;
        margin-right: 10px;
    }
}




/* colours */
.bg-purple {
    background-color: #4a0c7e;
}

.bg-light-purple {
    background-color: #7d0bc3;
}


* {
    margin: 0px;
    padding: 0px;
}
body{
    overflow-x: hidden;
    color: white;
    background-color: #01053a;
    font-family: sans-serif;
}
h1{
    font-size: 50px;
}
.spacing{
    height: 5px;
}
.subpoint{
    width: 95%;
    float: right;
}
ul ul{
    list-style-type: none;
    margin-top: 10px;
}
li{
    margin-top: 10px;
}
.error-code-404{
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 100px;
    color: #4a0c7e;
    width: 100%;
}
.page{
    min-height: 80vh;
    margin: 30px;
    color: white;
    font-size: 20px;
}
.line{
    /* height: 1px;
    background-color: aqua; */
}
a {
    text-decoration: none;
    color: white;
}

a:hover {
    color: #e0e0e0;
}

.flex {
    display: flex;
    align-items: center;
}

header {
    height: 7em;
    width: 100%;
}
.header-home{
    font-size: 50px;
    margin-left: 10px;
    fill: white;
}
#search-container{
    width: inherit;
    margin-right: 20px;
    justify-content: end;
}
#search-input{
    width: 50%;
    float: right;
    background-color: transparent;
    outline: none;
    border: 1px solid aqua;
    line-height: 2em;
    color: white;
    font-size: 23px;
    padding-left: 10px;
    border-radius: 3px;
}
#search-button{
    float: right;
    line-height: 2em;
    font-size: 18px;
    cursor: pointer;
    height: 2.2em;
    padding: 0px 10px;
    margin: 10px;
    background-color: inherit;
    outline: none;
    border: 1px solid aqua;
    color: white;
}
#ip-container {
    text-align: center;
    width: 80%;
    min-width: 80%;
    max-width: 97%;
    margin: 2em auto;
    color: white;
    padding: 0.5em 0.7em;
    font-size: 20px;
    font-family: monospace;
}

#ip-container2 {
    margin: auto;
    display: block;
}

.ip-type {
    font-weight: 400;
}

.ip-display-box {
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.ip-details{
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
    font-weight: 400;
    text-transform: capitalize;
    padding-left: 10px;
}
#ipv6-query{
    text-transform: lowercase;
}
.reading-area{
    max-width: 45em;
}
footer {
    height: auto;
    width: 100%;
    padding-top: 10px;
}

.footer-link {
    display: block;
    margin-top: 5px;
}

.footer-tab {
    margin: auto;
    margin-top: 10px;
    width: 85%;
    padding: 20px;
}
.email{
    background-color: rgb(219, 219, 219);
    font-style: italic;
}
.blog-container {
    height: auto;
    margin: 10px auto;
    width: 90%;
    max-width: 90vw;
    padding: 10px 20px;
    color: #4a0c7e;
}

.blog-heading {
    margin-top: 10px;
    margin-bottom: 10px;
}

@media screen and (min-width:800px) {
    .ip-details-container{
        display: flex;
    }
    .ip-details{
        width: 48%;
        margin: 10px;
    }
    .blog-container {
        height: auto;
        margin: 20px auto;
        width: 85%;
    }
    .page{
        margin: 100px;
    }
    footer {
        display: flex;
        padding-bottom: 3em;
    }

    .footer-tab {
        margin-left: auto;
        margin-right: auto;
        width: 28%;
        padding: 20px;
    }
}
