html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 50px;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: white;
    overflow: hidden;
    line-height: 1.6;
    font-size: 16px;
    color: #333;
}

.content {
    margin: 5px;
    padding: 5px;
}

.container {
    margin: 0 auto;
    height: 100%;
}

.header {
    height: 100px;
    text-align: center;
    font-size: 48px;
}

.container2 {
    top: 15em;
}

.name {
    position: absolute;
    top: 1em;
    right: 2em;
}

.small-text {
    font-size: 6px;
}

.image-preview-large {
    padding: 10px;
    max-width: 100%;
    max-height: 600px;
}

.image-preview {
    width: 50%;
    padding: 10px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 100px;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004080;
    text-decoration: underline;
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
        margin-top: 0;
    }
    to {
        opacity: 0;
        margin-top: 30px;
    }
}

@-moz-keyframes fadeOut {
    from {
        opacity: 1;
        margin-top: 0;
    }
    to {
        opacity: 0;
        margin-top: 30px;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        margin-top: 0;
    }
    to {
        opacity: 0;
        margin-top: 30px;
    }
}


.drop {
    position: absolute;
    border-color: #aaa;
    border-width: 2px;
    border-style: solid;
    width: 20px;
    height: 20px;
    z-index: -1;

    -webkit-animation: fadeOut ease-in 1; /* repeat it only 1 time */
    -moz-animation: fadeOut ease-in 1;
    animation: fadeOut ease-in 1;

    -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

.drop.triangle {
    width: 20px;
    height: 20px;
    border: none;
    /* triangle shape is defined from js */
    /*background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpolyline points='0,0 20,0 10,20' style='fill:none;stroke:%23aaa;stroke-width:2'/%3E%3C/svg%3E");*/
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.drop.rounded-square {
    border-radius: 5px;
}

.drop.circle {
    border-radius: 50%;
}

/* Animation toggle button styles */
.toggle-button {
    display: block;
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-button:hover {
    background-color: #004080;
}

.toggle-button[aria-pressed="false"] {
    background-color: #666;
}

.toggle-button[aria-pressed="false"]:hover {
    background-color: #444;
}
