body {
    font-family: Arial, sans-serif;
    align-content: center;
    background-color: #0a193a;
    color: #d6e3ff;
    text-align: center;
    margin: 0;
}
.nav {
    position: relative;
    background-color: #060f22;
    width: 100%;
    height: 50px;
    margin: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    align-content: left;
    display:flex;
}
#icon {
    height: 36px;
    width: auto;
    margin: 7px;
}
#icon:hover {
    height: 40px;
    width: auto;
    margin: 5px;
    animation-duration: 0.2s;
    animation-name: iconanime;
}
.wrapper {
    position: relative;
    display: flex;
    min-width: 100px;
    margin-top: 7%;
    margin-bottom: 10%;
}
#searchbar {
    border: 1px solid white;
    border-radius: 40px;
    height: 40px;
    width: 100%;
    padding: 2px 23px 2px 20px;
    outline: 0;
    background-color: #0a193a;
    color: #bbbbbb;
}
#searchbar:hover {
    border: 1px solid #FFE6A7;
    animation-duration: 0.2s;
    animation-name: searchbord;
}
#searchbar:focus {
    border: 1px solid #FFE6A7;
    border-radius: 5px;
    animation-duration: 0.2s;
    animation-name: searchbordfocus;
}

#content {
    align-items: center;
    width: 60%;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    flex-direction: column;
}
#logo {
    width: 60%;
    height:auto;
    margin: 0;
    margin-top: 30%
}
#valider {
    background-color: #0a193a;
    border: 1px solid white;
    border-radius: 40px;
    color: #888888;
    margin-left: 10px;
    padding: 10px;
}
#valider:hover {
    border: 1px solid #FFC1D1;
    border-radius: 5px;
    animation-duration: 0.2s;
    animation-name: valibord;
} 

a {
    text-decoration: none;
    color: #bbbbbb; 

}

#hrefadmin {
    position: absolute;
    right: 20px;
    margin-top: 8px;
    border: 1px solid #bbbbbb;
    padding: 7px;
    border-radius: 10px;
    animation-duration: 0.2s;
    animation-name: valibord;
}

#hrefadmin:hover {
    border: 1px solid #FFC1D1;
    border-radius: 5px;
    color: #FFC1D1;
}

#warning
{
    width: 75px;
    height: auto;
    display: table-cell;
}

#flash
{
    display: table;
    border: 1px solid white;
    border-radius: 10px;
    align-items: center;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    flex-direction: column;
    padding: 0.5%;
    margin-top: 20px;
}

.rboutons {
    display: flex;
    justify-content: center;
    margin: 0;
}

p
{
    display: table-cell;
    vertical-align: middle;
}

@keyframes iconanime {
    from {
        height: 36px;
        width: auto;
        margin: 7px;
    }
    to {
        height: 40px;
        width: auto;
        margin: 5px;
    }
}
@keyframes searchbord {
    from {
        border: 1px solid white;
    }
    to {
        border: 1px solid #FFE6A7;
    }
    
}
@keyframes searchbordfocus {
    from {
        border: 1px solid white;
        border-radius: 40px;

    }
    to {
        border: 1px solid #FFE6A7;
        border-radius: 5px;
        }
}
@keyframes valibord {
    from {
        border: 1px solid white;
        border-radius: 40px;
    }
    to {
        border: 1px solid #FFC1D1;
        border-radius: 5px;
    }
}


@media (max-width: 1000px){
    #content{
        width: 70%;
    }
}
@media (max-width: 700px){
    #content{
        width: 90%;
    }
}
@media (max-width: 500px){
    #content{
        width: 100%;
    }
}