/* Define the charset to interpret this stylesheet in */
@charset "utf-8";

.landing-main {
	text-align: center;
	max-width: 100%;
}
.landing-menu {
    margin-bottom: 2rem;
}
.landing-item {
    display: block;
    width: 600px;
    max-width: 90%;
    margin: 0rem auto 0.3rem auto;
    transition-property: width;
    transition-duration: 0.2s;
}
.landing-item:hover {
    width: 650px;
}

.logo {
    max-width: 100%;
    animation-name: fade_in_static;
    animation-duration: 1.5s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
}