@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Katibeh&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Katibeh&family=Kodchasan:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #F0F8FF;
    flex-direction: row; 
}

.navbar {
    background: #ffff;
    font-family: "Kodchasan", sans-serif ;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 80px; 
}

.navdiv {
    display: flex;
    align-items: center; 
    justify-content: space-between;
    width: 100%;
}

.logo a {
    font-size: 18px;
    font-weight: 600;
    color: #8C8888;
    margin-top: 10px;
}

.logo-img {
    width: 60px; 
    height: 60px;
    margin-right: 10px;
    margin-top: 5px;
}

li {
    list-style: none;
    display: inline-block;
    margin-top: 10px;
}

li a {
    color: #8C8888;
    font-size: 18px;
    margin-right: 75px;
}

.header {
    width: 200px; 
    color: #8C8888;
    text-align: center;
    padding: 60px 0;
    font-family: "Katibeh", serif;
    font-size: 2rem;
    margin-right: 400px; 
}

.container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .spinBtn {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    color: black;
    letter-spacing: 0.1rem;
    border: 4px solid #F0F8FF;
    cursor: pointer;
    user-select: none;
}

.container .spinBtn::before {
    content: '';
    position: absolute;
    top: -20px;
    width: 20px;
    height: 30px;
    background: #fff;
    clip-path: polygon(50% 0%, 15% 100%, 85% 100%);
}

.container .wheel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F0F8FF;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 5px #fff,
                0 0 0 15px #fff,
                0 0 0 18px #fff;
}

.container .wheel .location {
    position: absolute;
    width: 50%;
    height: 50%;
    background: var(--clr);
    transform-origin: bottom right;
    transform: rotate(calc(18deg * var(--i)));
    clip-path: polygon(100% 100%, 65% 0%, 100% 0%);
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    cursor: pointer;
}

.container .wheel .location span {
    position: relative;
    transform: rotate(calc(-18deg * var(--i)));
    font-size: .75em;
    font-weight: 600;
    color: black;
    text-align: center;
    max-width: 70px;
    line-height: 1.1;
    padding: 2px;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
    white-space: normal;
}

.container .wheel .location span::after {
    position: absolute;
    font-size: 0.75em;
    font-weight: 500;
}

.container {
    position: relative;
    width: 700px;   
    height: 700px;  
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -250px;
    margin-top: 50px;
}

#imageDisplay {
    padding-left: 100px;
    margin-top: 100px;
    width: 400px;
    height: auto;
}

