* {
    box-sizing: border-box;
    font-family: 'Jura';
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background: linear-gradient(210deg, #150021 0%, #0F000F 100%);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
}

#bgGif {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 20vh;
    background-image: url("images/bgGif.gif");
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: top left;
    z-index: -1;
    opacity: 0.2;
}

@keyframes buttonsEntrance {
	0% {
		opacity: 0;
		transform: translateY(250px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes logoEntrance {
	0% {
		opacity: 0;
		transform: translateX(250px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes infoEntrance {
	0% {
		opacity: 0;
		transform: translateY(-250px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Main layout container */
.windowWrapper {

    display: grid;

    grid-template-columns: auto auto;

    grid-template-rows: auto auto;

    grid-template-areas:
        "info logo"
        "buttons buttons";

    gap: 20px;

    padding: 20px;

    width: fit-content;
}

h2 {
    font-family: 'Jura';
    font-size: 20px;
    color: #ff006a;
}


.InfoWindow {
    grid-area: info;
    border: 2px solid #ff006a;
    animation: infoEntrance 2s ease 0s 1 normal forwards;
}

.InfoWindow #infoWindowTopBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 2px solid #ff006a;
}

.InfoWindow h2 {
    margin: 0;
    margin-left: 5px;
    color: #ffffff;
}

.InfoWindow #infoWindowContent {
    padding: 10px;
    color: #ffffff;
    font-size: 20px;
}



.logoWindow {
    animation: logoEntrance 2s ease 0s 1 normal forwards;
    grid-area: logo;
    border: 2px solid #ff006a;
    max-height: 250px;
    max-width: 250px;
}

.logoWindow #logoWindowTopBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 2px solid #ff006a;
}

.logoWindow h2 {
    margin: 0;
    margin-left: 5px;
    color: #ffffff;
}

.logoWindow #logoWindowContent {
    padding: 10px;
    color: #ffffff;
}

.logoWindow img {
    max-width: 200px;

    height: auto;
    display: block;
    margin: 0 auto;
}



.buttonSection {
    grid-area: buttons;
    display: flex;
    justify-content: flex-start;
    display: flex;
    flex-wrap: wrap;
    animation: buttonsEntrance 2s ease 0s 1 normal forwards;
}

.navButton {
    width: 140px;
    height: 140px;
    aspect-ratio: 1 / 1;
    padding: 0px;
    background-color: transparent;
    border: none;
    padding: 15px;
    flex: 0 0 auto;
}

.navButton:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.buttonImages {
    width: 100%;
    height: 100%;
    object-fit: contain;
}




@media (max-width: 600px) {
    .windowWrapper {
        grid-template-columns: 1fr;
        grid-template-areas:
            "logo"
            "info"
            "buttons";
    }
}