*{
    margin: 0px;
    padding: 0px;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    cursor: none;
    background-color: gray;
}

#wikiLink{
    text-decoration: none; 
    color:blue;
}

#img{
    position: relative;
    top: -60px;
    border-radius: 10%;
    width: 300px;
}

.list{
    
    display: inline-block;
    text-align: left;
}

#infoAboutBurgers{
    justify-content: center;
    align-items: center;
    width: 600px;
    height: 450px;
    background-color:rgb(190, 190, 190);
    border-radius: 10px;
    box-shadow: 0 0 10px 5px rgba(0,0,0,0.3);
    margin: 20px;
}

#infoCenter{
    display:flex;
    justify-content: center;
    align-items: center;
}

#headerCenter{
    display:flex;
    justify-content: center;
    align-items: center;
}

#centerBurgerBuilder{
    display:flex;
    justify-content: center;
    align-items: center;
}

#burgerBuilder{
    margin: 20px;
}

#centerFooter{
    display:flex;
    justify-content: center;
    align-items: center;
}

input[type=number], select {
    width: 100px;
    padding: 12px 20px;
    margin: 8px 0;
    background-color: rgb(190, 190, 190);
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0 0 2px 1px rgba(0,0,0,0.3);
}

.cursor-dot{
    width: 5px;
    height: 5px;
    background-color: white;
}

.cursor-outline{
    width: 30px;
    height: 30px;
    border: 2px solid hsla(0, 0%, 100%, 0.5)
}

.cursor-dot,
.cursor-outline{
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}