@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;800&display=swap');

html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    background-color: #ffffff;
    box-sizing: border-box;
}

.canvas {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100vw - 32px);
    height: calc(100vh - 32px);
    margin: 16px auto;
    padding: 16px;
    background-color: #5FAAB1;
    color: #fff;
    border-radius: 8px;
    box-sizing: border-box;
    overflow: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 100%;
}

.logo-container {
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

footer {
    font-size: 14px;
    text-align: center;
    color: #fff;
    width: 100%;
}

img {
    max-width: 100px;
    height: auto;
    margin-right: 20px;
}

h1 {
    font-size: 3rem;
    margin: 0;
}

.invisible {
    color: #5FAAB1;
}
  
@keyframes rotateLogo {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin180 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(180deg);
    }
}

.logo.spinning {
    animation: spin180 0.3s linear forwards;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .logo-container {
        flex-direction: column;
    }

    img {
        margin-right: 0;
        margin-bottom: 20px;
    }
}