
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Mooli&display=swap');

*{
    box-sizing: border-box;
}

body{
    font-family: lato,sans-serif;
    overflow-x: hidden;
    margin:0;
    background-color: #333;
    color: #222;

}

img{
    height: 500px;
    width: 700px;
}

.container{
    background-color: antiquewhite;
    transform-origin: top left;
    transition: transform 0.3s linear;
    width: 100vw;
    min-height: 100vh;
    padding: 50px;
}

.container.show-nav{
    transform: rotate(-20deg);
    

}

.circle-container{
    position: fixed;
    top:-102px;
    left:-102px;
}

.circle{
    background-color: rgb(250, 106, 54);
    height: 200px;
    width: 200px;
    border-radius: 50%;
    position: relative;                     
    transition: transform .3s linear;
}

.container.show-nav .circle{
    transform: rotate(-85deg);
}

.circle button{
    position: absolute;
    top:50%;
    left: 50%;
    background-color: transparent;
    border: 0;
    font-size: 26px;
    color: white;
    height: 100px;
    cursor: pointer;

}


.circle button:focus{
    outline: none;
}

.circle button#open{
    left:60%
}

.circle button#close{
    top:60%;
    transform: rotate(90deg);
    transform-origin: top left;

}
.container.show-nav + nav li{
    transform: translateX(0);
    transition-delay: 0.3s   ;
}

nav{
    
    position: fixed;
    bottom:40px;
    left: 0px;
    z-index: 100;
}

nav ul{
    list-style-type: none;
    
    padding-left: 25px;
}

nav ul li{
    text-transform: uppercase;
    margin: 40px 0;
    color: white;
    transform: translateX(-100%);
    transition: transform 0.2s ease-in;
}

nav ul li i{
    font-size: 15px;
    margin-right: 7px;

}

nav ul li + li{
    margin:20px;
    transform: translateX(-150%);

}

nav ul li + li + li{
    margin:40px;
    transform: translateX(-200%);

}
.content img{
    max-width: 100%;
}


.content{
    
    
    margin: 50px auto;
}
    

.content p{
    line-height: 1.5;
    text-shadow: 1px 1px;
}

.content small{
    color:palevioletred;
} 