html{
    width: 100%;
    height: 100%;
}

body{
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    background-color: rgb(32, 30, 30);
    color: white;
}

.sidebar{
    position: fixed;
    height: 100%;
    width: 18%;
    display: block;
    background-color:#0a0a0a;
    font-size: 16px;
    top: 0;
    left: 0;
}

.nav-item{
    margin: 10px 0;
    padding: 5px;
}

.logo{
    height: 55px;
    display: flex;
}

.logo-img{
    text-align: center;
    margin: 15px 0;
}

.generic{
    margin-left: 19%;
    margin-right: 10px;
}

.title{
    font-size: 35px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.home-title{
    font-size: 35px;
    margin-top: 80px;
    margin-bottom: 15px;
    text-align: center;
}

.home-content{
    font-size: 20px;
    margin-top: 80px;
    margin-bottom: 15px;
    text-align: center;
}

.about{
    margin-bottom: 20px;
}

.github-content{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.github-icon{
    display: flex;
    margin-right: 3.5px;
}

.github-link{
    display: flex;
    margin-left: 3.5px;
}

.representative{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.rep-content{
    word-break: break-all;
    margin-left: 5px;
}

.widget-adjust{
    display: flex;
    justify-content: center;
}

.widget-width{
    width: 80%;
}

input[type=text] {
    background-color: #6f6a6a;
    color: white;
    border: 0px solid black;
    height: 25px;
}

::placeholder {
    color:white;
}

.button {
    background-color: #6f6a6a;
    border: none;
    color: white;
    padding: 5px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 0px;
    cursor: pointer;
    border-radius: 20px;
}

.field{
    margin-top: 10px;
    height: auto;
    display: flex;
    align-items: center;
    background-color: #484242;
    width: 30%;
    padding: 5px 5px;
}

.larger-field{
    margin-top: 10px;
    height: 30px;
    display: flex;
    align-items: center;
    background-color: #484242;
    width: auto;
    padding: 4px 5px;
}

.dict-field{
    height: auto;
    margin-top: 10px;
    display: block;
    background-color: #484242;
    width: auto;
    padding: 0 5px;
}

.dict-content{
    display: flex;
    padding: 5px 0;
}

.info-title{
    display: flex;
    justify-content: flex-start;
    width: 50%;
}

.info-content{
    display: flex;
    justify-content: flex-end;
    width: 50%;
}

.largefield-content{
    /* display: block;
    justify-content: flex-end;
    line-break: auto; */

    display: flex;
    justify-content: flex-end;
    width: 50%;
}

@media only screen and (max-width:900px){
    .sidebar{
        width: 23%;
    }

    .generic{
        margin-left: 25%;
    }

    .larger-field{
        display: block;
        height: auto;
    }

    .info-title{
        margin: 0;
        display: block;
    }

    .largefield-content{
        height: auto;
        word-break: break-all;
        width: 100%;
        justify-content: flex-start;
    }
}

a:link{
    text-decoration: none;
    color: white;
}

a:hover{
    text-decoration: underline;
    color: white;
}

a:active{
    text-decoration: none;
    color: white;
}

a:visited{
    text-decoration: none;
    color: white;
}
