#container
{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

h1
{
    flex-direction: row;
    font-size: clamp(0.1rem, 10vw, 6rem);
    text-align: center;
}

p
{
    flex-direction: row;
    max-width: 1500px;
    font-size: clamp(0.3rem, 6vw, 3rem);
    text-align: center;
}

.linkToDraw
{
    margin-top: 20px;
    color: black;
    border: 2px solid black;
    background-color: #2BAE66FF;
    font-size: clamp(1.2rem, 5vw, 3rem);
    padding: 10px;
}

.linkToDraw:hover
{
    background-color: rgba(43, 174, 102, 0.82);
}