* {
    margin: 0;
    padding: 0;
    font-family:  sans-serif;
}

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

.selector {
    width: 350px;
}

#selectField {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 30px;
    box-sizing: border-box;
    background: rgba(224, 225, 222, 0.7);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

#selectField img {
    width: 12px;
    transition: transform 0.3s ease;
}

#list {
    width: 100%;
    background: rgba(227, 227, 234, 0.7);
    border-radius: 6px;
    overflow: hidden;
}

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

.options img {
    width: 25px;
}

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

.hide {
    visibility: hidden;
}

.rotate {
    transform: rotate(180deg);
}




















