body {
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

header{
    background: #72147e;
    width: 100%;
    height: 10vh;
}

 header nav {
    display: flex;
    justify-content: flex-end;
}

header nav .nav-right-section {
    width: 250px;
    height: auto;
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
}

header nav .nav-right-section a{
    margin-right: 10px;
    color: white;
}

nav .nav-right-section .menu--icon{
    background-image: url("https://www.flaticon.es/svg/vstatic/svg/3603/3603178.svg?token=exp=1620329226~hmac=69e6dec244508f980698cdf9229c4b05");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 25px;
    height: 25px;
}

nav .nav-right-section img {
    border-radius: 50%;
    margin-left: 10px;
}

.main{
    padding-top: 75px;
    text-align: center;
    background: linear-gradient(to bottom, #72147e, #f21170);
    min-height: 472px;
    height: 80vh;
}

main .main-logo{
    width: 530px;
    margin: 0 auto;
    margin-bottom: 25px;
}

main .main-logo img{
    width: 300px;
}

main .main-input{
    width: 530px;
    margin: 0 auto;
    margin-bottom: 35px;
}

main .main-input-container {
    align-items: center;
    background: white;
    border-radius: 100px;
    border:  1px solid #dfe1e5;
    display: flex;
    justify-content: center;
    width: 525px;
}

main .main-input input {
    width: 450px;
    height: 40px;
    outline: none;
    border: none;
}

main .main-input-container:hover{
    box-shadow: 0 2px 6px 0 #202124;
    border-color: #dfe1e500;
}

main .main-input .search-icon {
    background-image: url('https://img.icons8.com/android/24/000000/search.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 18px;
    height: 18px;
}

main .main-input .micro-icon{
    background-image: url('https://www.gstatic.com/images/branding/googlemic/2x/googlemic_color_24dp.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 18px;
    height: 18px;
    cursor: pointer;
}


main .main-buttons{
    width: 530px;
    margin: 0 auto;
}

main .main-buttons div{
    display: inline-block;
}

main .main-buttons button {
    height: 36px;
    background-color: #f2f2f2;
    border-radius: 5px;
    padding: 0 15px;
    border: none;
    font-size: 16px;
    color: #72147e;
    margin-right: 15px;
}

main .main-buttons button:hover {
    box-shadow: 0 5px 1px rgb(0 0 0 / 10%);
    background-color: #f8f9fa;
    border: 1px solid #dadce0;
    color: #51147f;
}


.footer {
    width: 100%;
    height: 10vh;
    position: absolute;
    bottom: 0;
    background-color: #f21170;
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    font-size: 13px;
}


.footer ul  {
    margin: 10px;
    list-style: none;
    display: flex;
    padding-left: 0;
    }

footer .footer-left {
    justify-self: left;
}
footer .footer-right {
    justify-self: right;
}

footer ul li a{
    margin: 10px;
    color: #f2f2f2;
    text-decoration: none;
}
