@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

* {
    box-sizing: border-box;
}
body {
    font-family: 'Lato', sans-serif; 
    background-color: #333;
    color: #222;
    overflow-x: hidden; 
    margin: 0;
}
header {
    position: relative;
    width: 100%; 
    padding: 10px 20px;
    box-sizing: border-box; 
    background-color: #444;
}
.login {
    position: absolute; 
    top: 10px; 
    right: 20px; 
}
.login a {
    text-decoration: none; 
    font-size: 16px;
    font-weight: bold; 
    color: #fbfbfb; 
    background-color: #305276; 
    padding: 8px 16px; 
    border-radius: 5px; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease; 
}
.login a:hover {
    background-color: #0056b3; 
    color: #ffffff; 
}
.container {
    background-color: #fafafa;
    transform-origin: top left;
    transition: transform 0.5s linear;
    width: 100vw;
    min-height: 100vh;
    padding: 50px;
}
.container.show-nav {
    transform: rotate(-20deg);
}
.circle-container {
    position: fixed;
    top: -100px;
    left: -100px;
}
.circle {
    background-color: #305276;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    position: relative;
    transition: transform 0.5s linear;
}
.container.show-nav .circle {
    transform: rotate(-70deg);
}
.circle button {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100px;
    background-color: transparent;
    border: 0;
    font-size: 26px;
    color: #fafafa;
}
.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.1s;
}
nav {
    position: fixed;
    bottom: 40px;
    left: 0;
    z-index: 100;
}
nav ul {
    list-style-type: none;
}
nav ul li {
    text-transform: uppercase;
    color: #fff;
    margin: 40px 0; 
    transform: translateX(-100%); 
    transition: transform 0.4s ease-in;
}
nav ul li i {
    font-size: 20px;
    margin-right: 10px;
}
nav ul li + li {
    margin-left: 15px;
    transform: translateX(-150%);
}
nav ul li + li + li {
    margin-left: 30px;
    transform: translateX(-200%);
}
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100vw;
    margin: 50px; 
}
.content img {
    max-width: 75vw;
}
.content small {
    color: #555;
    font-style: italic;
}
.content p {
    color: #333;
    line-height: 1.5;
}