@import url("https://fonts.googleapis.com/css2?family=Poppins");
*{
    margin: 0;
    padding: 0;
    font-family: Poppins, sans-serif;
    user-select: none;
    -webkit-user-drag: none;
}
body{
    min-height: 100vh;
    background: linear-gradient(#ffc3a0, #ffafbd);
    display: flex;
    justify-content: center;
    align-items: center;
}
header{
    top: 10px;
    width: 99%;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
}
.center{
    width: 34%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.left{
    width: 30%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.right{
    width: 30%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.right a .icon, .left a .icon{
    width: 30px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}
.right a .icon ion-icon, .left a .icon ion-icon{
    font-size: 1.4em;
    color: black;
}
section a .icon ion-icon{
    color: rgba(255, 255, 255, 0.3);
    font-size: 12em;
}
.navigation{
    width: fit-content;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    overflow-x: hidden;
    box-shadow: 0 8px 32px 0 #fff;
    display: flex;
    position: absolute;
    box-sizing: border-box;
    transition: width 0.5s;
    bottom: 30px;
    backdrop-filter: blur( 4px );
}
.navigation a{
    text-decoration: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navigation a .icon{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navigation a .icon ion-icon{
    font-size: 1.9em;
}
.toggle{
    width: 50px;
    height: 50px;
    position: fixed;
    font-size: 3em;
    top: 20px;
    right: 20px;
    background: white;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
}
.toggle ion-icon{
    position: absolute;
    font-size: 34px;
    display: none;
}
/*
.darkTheme{
    width: 50px;
    height: 50px;
    position: fixed;
    right: 20px;
    top: 100px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.darkTheme ion-icon{
    font-size: 2rem;
}
.navigation.active{
    width: 275px;
    background: #753a88;
    z-index: 2;
}
.navigation ul li.active{
    background: #fff;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;

}
.navigation ul li.active a{
    color: #333;
}
.toggle ion-icon.open, .toggle.active ion-icon.close{
    display: block;
}
.toggle.active ion-icon.open, .toggle.open ion-icon.close{
    display: none;
}
.toggle.active{
    background: #cc2b5e;
    z-index: 1;
}
.darkTheme.active{
    background: #cc2b5e;
}
body.active{
    width: 20px;
    background: rgba(4, 7, 7, 1.0);
}*/