@import url('fonts.css');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: PixeloidSans;
    user-select: none;
}

li{
    list-style: none;
    margin-bottom: 10px;
}


#sidebar ul{
    list-style: none;
    color: blue;
}

#sidebar ul li{
    text-decoration: underline;
}

#sidebar li#selected{
    color: black;
    text-decoration: none;
    list-style: square;
}

#container1{
    display: flex;
    background-color: #f1f1f1;
    align-items: center;
    border-bottom: 2px solid #a0a0a0;
    gap: 10px;
    padding: 10px;
}

#body{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

#stretcher{
    height:440px;   
}

#sidebar{
    width: 20%;
    height: 100%;
    padding-top: 10px;
    padding-left: 30px;
    overflow-wrap: break-word;
}

#sidebar p{
    /* margin: 0px;
    padding: 0px; */
    color: blue;
    text-decoration: underline;
}

#content{
    width: 80%;
    /* height: 100vh; */
    padding-top: 10px;
    padding-left: 20px;
    border-left:  2px solid #a0a0a0;

}

.link {
    text-decoration: underline;
    color: blue;
}

.link:hover{
    cursor: pointer;
}

.description{
    font-size: 0.7rem;
    font-family: PixeloidSans;
}

.domain{
    font-size: 1rem;
    font-family: PixeloidSans;
    color: #65C776;
}


#google_logo{
    width: 200px;
    filter: drop-shadow(0px 0px 3px #000);
}

#search_field{
    width: 200px;
    height: 30px;
}

#search_button{
    height: 30px;
    cursor: pointer;
    padding-left: 5px;
    padding-right: 5px;
}


/* ===================== footer and header goes below */

#wrapper{
    border: 15px solid #BDBEBD;
    border-bottom: 30px solid #BDBEBD;
    height: 100%;
}

#titleBar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 10%;
    border: 5px solid #BDBEBD;
    background: linear-gradient(to right, #00008B, #0000CD);
    padding: 2px;
    border-bottom: 0px;
}

#title{
    font-size: 1rem;
    color: white;
    font-family: PixeloidSans;

}

#titlebar_sub{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

#optionsbar{
    display: flex;
    align-items: center;
    width: 100%;
    height: 10%;
    border: 5px solid #BDBEBD;
    background: #a0a0a0;
    padding: 5px;
    flex-direction: row;
    gap: 10px;
}

#optionsbar p:hover{
    background-color: blue;
    color: white;
}


#internet{
    width: 3vh;
}

#crossbutton{
    width: 3vh;
    cursor: pointer;
}

#body_outline{
    height: 100%;
    border: 2px solid black;
}

@media screen and (max-width: 400px) {
    #sidebar{
        display: none;
    }

    #google_logo{
        width: 100px;
    }

    #search_field{
        width: 120px;
    }
}