body{
    background: url(./img/bg.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

#hamburguer{
	display: none;
	height: 35px;
	width: 35px;
	transition: .2s;
	stroke: white;
}

.mainContainer{
    display: flex;
    backdrop-filter: blur(50px);
    margin-bottom: 2rem;
    align-items: center;
    justify-content: flex-start;
}

.mainContainer img{
    width: 10%;
    height: 80px;
    border-radius: 50%;
    margin: 1.5rem 2rem;
}

.navbar-options a {
    padding: 20px 1rem;
    text-decoration: none;
    color: white;
}


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

@media screen and (max-width: 680px){
	.mainContainer img{
		height: 50px;
	}

	main{
		position: relative;
	}

	.navbar-options{
        	position: fixed;
        	top: 90px;
        	display: none;
        	flex-direction: column;
        	padding: 2rem 3rem;
       	 	gap: 1rem;
        	background: #423445;
        	height: max-content;
        	z-index: 999;
        	width: 80%;
        	left: 50%;
        	transform: translateX(-50%);
        	border-radius: 10px;
 	}

	.navbar-options.active{
		display: flex;
	}

	#hamburguer{
		display: block;
		margin-right: 2rem;
	}

	.navbar-options a {
    		padding: 20px 0rem;
    		margin-right: 2rem;
		border-bottom: 1px solid #8080803d;
	}

	.mainContainer {
    		justify-content: space-between !important;
	}

	.mainContainer img {
    		width: 10%;
    		height: 50px;
	}
}