@import url(reset.css);


.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

:root{
    --primary: rgb(185,185,185);
    --secondary: rgb(32,32,32);
    --accent: rgb(93,93,93);
    --bg: rgb(32,32,32);
    --nav-bg: rgb(185,185,185);
    --text: rgb(93,93,93);
}


h1 {
    color: #333;
    text-align: center;
    padding: 20px 0;
    font-family: "azo-sans-web", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 50px;
}

p {
    color: #666;
    line-height: 1.6;
    padding: 0 20px;
    font-family: "azo-sans-web", sans-serif;
    font-weight: 400;
    font-style: normal;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: var(--nav-bg);
    width: 100%;
    height: 100px;
    font-family: "azo-sans-web", sans-serif;
    font-weight: 400;
    font-style: normal;
}
nav{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 20;
}

li {
    float: left;
    font-family: "azo-sans-web", sans-serif;
    font-weight: 400;
    font-style: normal;
    align-items: column;
}

li a {
    display: block;
    color: rgb(93, 93, 93);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}


.container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    justify-content: space-around;
    top: 0;            
    left: 0;           
    width: 100%;      
    z-index: 10;
}

.logo{
    height: 70px;
    width: auto;
    fill: var(--accent);
}
.logotext{
    height: 30px;
    width: auto;
    fill: var(--accent);
}
/* Ensure the inlined SVG elements inherit the accent color */
#logo-svg, #logotext-svg {
    color: var(--accent) !important;
    width: auto;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    transition: color 220ms ease;
}
#logo-svg { width: 70px; }
#logotext-svg { width: 180px; margin-left: 8px; }
.sharee{
    color: var(--accent);
}
.buttn { display: inline-block; padding: 8px; }
#sharee { cursor: pointer; color: var(--accent); font-size: 28px; }
body{
    background-color: var(--secondary);
    color: var(--text);
}
.circle{
    height: 350px;
    width: 350px;
    border-radius: 175px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    justify-self: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
}
.inCircle{
    height: 270px;
    width: 270px;
    border-radius: 135px;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    justify-self: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.inInCircle{
    height: 100px;
    width: 100px;
    border-radius: 50px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    justify-self: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#shuffle{
    color: var(--accent); 
    font-size: 60px;
    cursor: pointer;
    transition: transform 0.12s ease, color 0.12s ease;
}
#shuffle:hover{ transform: scale(1.08); color: var(--accent) }

.h1Text{
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    justify-self: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 120px);
    font-size: 30px;
    color: var(--accent);
}
.colorBoxes{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    justify-self: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 220px);
    gap: 12px;
}
.box1, .box2, .box3{
    height: 60px;
    width: 300px;
    border-radius: 10px;
    background-color: rgb(218, 218, 218);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.colorBox1, .colorBox2, .colorBox3{
    height: 50px;
    width: 50px;
    border-radius: 10px;
    margin-right: 5px;
}
.colorBox1{
    background-color: var(--primary);
    position: fixed;
    right: 0px;
}
.colorBox2{
    background-color: var(--secondary);
    position: fixed;
    right: 0px;
}
.colorBox3{
    background-color: var(--accent);
    position: fixed;
    right: 0px;
}

.logoclass {
    width: 50px;
    height: 50px;
}