*{
    margin: 0;
    padding: 0;
}

.navbar{
    display: flex;
    background-color: rgb(130, 130, 255);
    align-items: center;
    padding: 20px 20px;
    justify-content: space-between;
}
.navbar .main{
    font-family: sans-serif;
    font-size: 1.5rem;
    font-weight: bolder;
    color: white;
}
.navbar .options{
    display: flex;
    text-decoration: none;
    list-style: none;
    gap: 20px;

}
.navbar .options li a {
    text-decoration: none;
    color: white;
    font-family: sans-serif;
}

.navbar .options li a:hover{
    color: gray;
    transition: .5s;
    text-decoration: underline;
}
.options{

    text-decoration: none;
    list-style: none;
    gap: 20px;}
.options li a {
    text-decoration: none;
    color: rgb(255, 238, 0);
    font-family: sans-serif;
    flex: 1;
}
.footer{
    flex-wrap: wrap;
    display: flex;
    justify-content: space-evenly;
    background-color: rgba(124, 116, 116, 0.492);
    align-items: center;
}
.footer h2{
    color: yellow;
}
.footer p{
    color: white;
}

.main{
    flex: 1;
}
.images{
    height: 100vh;
    width: 150vh;
}
.images img{
    display: flex;
    justify-content: right;
    align-items: center;
    height: 100vh;
    width: 150vh;
    margin-right: 1px;
    background-size: cover;
}
