*{
    margin: 0;
    padding: 0;
    font-family: "Segoe UI";
}
@font-face {
    font-family: "Segoe UI";
    src: url("segoeuil.ttf") format("truetype");
    src: url("segoeuil.woff") format("woff");
}
.container{
    width: 100%;
    min-height: 100px;
    overflow: hidden;
    position: fixed;
    z-index: 999999;
}
.navbar{

    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;

    width: 100%;
    display: flex;
    align-items: center;
}
.logo{
    width: 50px;
    cursor: pointer;
    margin: 30px 0;
}
.menu-icon{
    width: 25px;
    cursor: pointer;
    display: none;
}
nav{
    flex: 1;
    text-align: right;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-right: 30px;
}
nav ul li a{
    text-decoration: none;
    color: #000000;
    font-size: 20px;
}
nav ul li a:hover{
    color: #a1a1a1;
}
#menuList{
    display: block;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background: linear-gradient(#FFD99B, #DF8FC9);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0;
}
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {
    color: #FFFFFF;
}
.dropdown:hover .dropdown-content {
    display: block;
}

.text{
    width: 100%;
    min-height: 70.1vh;
    box-sizing: border-box;
    padding-left: 8%;
    padding-right: 8%;
    padding-top: 8%;
    overflow: hidden;
}
.privacy{
    align-items: center;
    margin: 100px 0;
}
.description{
    font-size: 30px;
    color: #000000;
    font-weight: 100;
}
.text::after{
    content: '';
    width: 10px;
    height: 40%;
    background: linear-gradient(#FFD99B, #DF8FC9);
    position: absolute;
    left: -40px;
    top: 8px;
}

.footer{
    position: relative;
    background: #0088FF;
    height: 100%;
    align-items: center;
}
.contents{
    padding: 2em;
    display: flex;
    align-items: center;
    flex: 1;
}
.license{
    max-width: 50%;
}
.license h1{
    font-size: 1rem;
    color: #FFFFFF;
}
.license button{
    background: #00000000;
    border: none;
}
.license button img{
    width: 3rem;
    height: 3rem;
}
.footer-about{
    padding-left: 30%;
    text-align: left;
}
.footer-about ul li {
    list-style: none;
    padding-bottom: 1rem;
}
.footer-about ul li a{
    text-decoration: none;
    color: #FFFFFF;
    font-size: 1.25rem;
    margin-top: 1rem;
}
.copyright{
    padding: 2em;
}
.copyright h3{
    color: #F1F1F1;
}
.copyright h4 {
    color: #F1F1F1;
}

@media only screen and (max-width: 700px){

    .container{
        min-height: 180px;
    }
    .menu-icon {
        display: block;
    }
    #menuList{
        display: none;
    }

}