body {
        margin: 0;
        overflow: hidden;
        font-family: arial;
        font-size: 30px;
        background-color: white;
        display: flex;
        height: 100vh;
        flex-direction: column;
        
    }

.main-container {
    flex: 8;
    flex: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info {
    font-size: 20px;
    flex: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.info h1 {
    font-size: 60px;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}

.info p {
    width: 60%;
    text-align: justify;
}

.canvas-wrapper {
    display: flex;
    flex: 2;
    align-items: center;
    justify-content: center;
    width: 60%;
    aspect-ratio: 1;
    margin-right: 15%;
}

.footer {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    flex: 1;
    text-align: center;
    color: grey;
}

.footer a {
    text-decoration: none;
    color: grey;
    font-weight: bolder;
}

.footer a:hover {
    color: grey;
    font-weight: bolder;
    text-decoration: underline;
}

@media (max-width: 700px) {
    .main-container {   
        flex-direction: column;
    }
    
    body {
        margin: 0;
        height: auto;
        overflow-y: scroll;
        font-size: 20px;
        }
}