* {
    font-family: Arial, Helvetica, sans-serif;
}

body {
    display: flex;
    align-items: center;
    flex-direction: column;

    background-color: #a7ffff;
}

.headline {
    font-size: 4rem;
    font-weight: 800;
}

.card {
    width: 35rem;
    height: 40rem;
    padding: 1rem;
    background: white;

    border: 1px solid lightgray;
    border-radius: 5%;
    box-shadow: #adabab 10px 10px 10px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.card-title {
    font-size: 2rem;
    font-weight: 1000;
}

.input-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.button-container {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.button {
    padding: 10px 15px;
    border-radius: 20px;
    color: white;
    font-weight: bolder;
    font-size: 1rem;
    cursor: pointer;
    flex: 1;
    transition: all 0.3s ease;
}

.clear-button {
    border: 2px solid #ff4545;
    background-color: #ff4545;
}

.download-button {
    border: 2px solid #4585ff;
    background-color: #4585ff;
}

.text-input {
    border: 2px solid lightgray;
    padding: 12px 15px;
    border-radius: 20px;
}

.coordinates-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
}

.dummy-picture {
    border: 3px solid lightgray;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    p {
        font-size: 2.5rem;
        color: #c0c0c0;
    }
}

.meme-canvas {
    width: 100%;
    height: 100%;
}

.hidden {
    display: none;
}