@font-face {
    font-family: 'Rubik';
    src: url('Rubik-Light.woff2') format('woff2'),
        url('Rubik-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    color: #363636;
}

body {
    margin: 0;
    padding: 0;
}

.container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 15fr 8fr 7fr 1fr;
    height: 100vh;
}

.header {
    background-color: #753bbd;
    height: 100%;
}

.kitty {
    overflow-y: scroll;
    font-size: 0;
    scrollbar-width: none;
    display: flex;
    justify-content: center;
}

.kitty img {
    width: min(120vw, 1200px);
    height: min(140vw, 1400px);
}

.welcome {
    padding: 1rem;
    background-color: #f5f0fa;
    align-content: center;
    font-family: "Rubik", sans-serif;
    font-weight: 300;
    text-align: center;
    font-size: min(1.3rem, 3vh);
    line-height: 1.75;
    text-wrap: balance;
    height: 100%;   
}

.logo {
    background-color: #f5f0fa;
    align-content: center;
    text-align: center;
    height: 100%;
}

    .logo img {
        width: 25vh;
    }

.footer {
    background-color: #373534;
    height: 100%;
}