* {
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    box-sizing: border-box;
}
.hero {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(45deg,#010758,#490d61);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hero h1 {
    margin-top: -50px;
    margin-bottom: 50px;
    color: whitesmoke;
}
.hero h1 span {
    color: #ff2963;
}
.text-area {
    width: 600px;
    height: 300px;
    background: #403d84;
    color: white;
    font-size: 15px;
    padding: 25px;
    border-radius: 10px;
    overflow-y: auto;
    margin-bottom: 30px;
}
.highlight {
    background-color: yellow;
    color: black;
}
.row {
    width: 600px;
    display: flex;
    align-items: center;
    gap: 20px;
}
button {
    background: #ff2963;
    color: #fff;
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 35px;
    border: 0;
    outline: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}
button img {
    width: 16px;
    margin-right: 10px;
}
select {
    flex: 1;
    color: #fff;
    background: #403d84;
    height: 50px;
    padding: 0 20px;
    outline: 0;
    border: 0;
    border-radius: 30px;
    appearance: none;
    background-image: url(images/dropdown.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position-x: calc(100% - 20px);
    background-position-y: 20px;
}
.footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h2 {
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 50px;
}
