body {
    font-family: "Arial", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #e8e8e8;
    margin: 0;
}

.small-screen-bar {
    display: none;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1800px;
    padding: 20px 20px;
    box-sizing: border-box;
    flex: 1;
}

.form-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cell{
    margin: 5px;
    flex: 1;
}

.small{
    flex: 0.5;
}

.form-container label {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-container input {
    width: 100%;
    padding: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    box-sizing: border-box;
}

.dimension-input-row{
    display: flex;
    align-items: center;
    justify-content: center;
}

.endcard-container {
    font-family: "Proxima Nova", sans-serif;
    position: relative;
    background-color: #ffffff;
    width: 960px; /*adjust for 1x1 or 16x9: 540 or 960*/
    height: 540px;
    padding: 20px;
    text-align: center;
    border: 1px solid #ccc;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 30px;
}

.description {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 400;
}

.subtitle {
    font-weight: 600;
}
/*
.logo img {
    margin-top: 30px;
    max-width: 100%;
    height: auto;
    width: 150px;
}
*/
button {
    width: 100%;
    padding: 10px 20px;
    margin: 5px 0px;
    font-size: 16px;
    background-color: #797979;
    color: white;
    border: none;
    cursor: pointer;
}

#download-btn{
    background-color: #4CAF50;
}

a:link {
    text-decoration: none;
  }
  
  .footer {
    font-family: 'Arial';
    position: relative;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 5px 0 5px 0;
    font-size: 13px;
    background-color: rgb(243, 242, 242);
  }
  
  .fa-github:hover {
    animation: wiggle infinite 1s linear;
  }
  
  @keyframes wiggle {
    0% {transform: scale(1.2) rotate(0deg);}
    25% {transform: scale(1.2) rotate(-20deg);}
    50% {transform: scale(1.2) rotate(0deg);}
    75% {transform: scale(1.2) rotate(20deg);}
    100% {transform: scale(1.2) rotate(0deg);}
  }

@media (max-width: 1000px) {
    .download-btn {
        display: none;
    }

    .wrapper {
        display: none;
    }

    .small-screen-bar {
        display: block;
        width: 100%;
        background-color: #f44336;
        color: white;
        padding: 10px;
        text-align: center;
        font-size: 20px;
        position: fixed;
        top: 0; /* Align to the left of the viewport */
        left: 0; /* Align to the top of the viewport */
        z-index: 1000; /* Ensure it stays on top of other elements */
    }
}