* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', sans-serif;
}

.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(45deg, #f44369, #3e3b92);
    align-items: center;
}

.selector-box {
    width: 250px;
}

#selector {
    width: 100%;
    padding: 8px 10px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

#arrow-icon {
    position: absolute;
    width: 12px;
    right: 12px;
    top: 12px;
    transition: 0.5s;

}

#arrow-icon:hover {
    transform: rotate(180deg);
}

#list {
    visibility: hidden;
    background: rgba(255, 255, 255, 0.6);
    margin-top: 24px;
    border-radius: 4px;
    list-style: none;
    overflow: hidden;
    transition: 0.1s;
}

.options {
    width: 100%;
    padding: 15px 0 15px 50px;
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
}

.options:hover {
    background: rgba(255, 255, 255, 0.8);
}


.options img {
    width: 20px;
    position: absolute;
    top: 14px;
    left: 20px;
}

#list.hide {
    visibility:visible;
}

#arrow-icon.rotate {
    transform: rotate(180deg);
}