* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
    background-color: rgb(69, 66, 66);
    color: azure;
    font-family: "Outfit";
    font-size: 30px;
}
h1{
    font-size: 60px;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.options, .shape-visibility {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 1em;
}
select {
    margin: 5em;
}
.shape-visibility {
    padding: 3em;
    flex-direction: column;
}
.circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid white;
    margin-bottom: 3em;
}
.rectangle {
    width: 300px;
    height: 200px;
    border: 5px solid white;
    margin-bottom: 3em;
}
.square {
    width: 200px;
    height: 200px;
    border: 5px solid white;
    margin-bottom: 3em;
} 
.ellipse {
    width: 400px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid white;
    margin-bottom: 3em;
}