
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,300);

*{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: linear-gradient( 135deg, #8494f14f 10%, #a3f19957 100%);
}

.container {
    display: flex;
    padding: 10px;
    margin-bottom: 30%;
}

.column {
    flex: 1;
    padding: 10px;
    width: 33.3%;
    align-items: center;
}

.component {
    
    background-color: #f6f6f6;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    flex: 1;
    margin: 10px;
    border-radius: 10px;
    padding: 5px;
    padding: 20px;
    
    align-items: center;
}



.text-area {
    border: 1px solid #ccc;
    background-color: #fff;
    margin: 10px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-height: 20%;
    resize: vertical;
    overflow-y: scroll;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    
}

.text-area textarea {
    padding: 5px 0px;
    border: solid 1px #ffffff;
    resize: none;
    font-family:inherit;
    font-size: 14px;
    height: auto;
    max-height: 80px;
    width: 100%;
    overflow:hidden;
    transition: border 0.3s;
}

.merge-button {
    position: relative;
    opacity: 0;
    transition: opacity 0.3s;
    cursor: pointer;
    font-size: 17px;
    background-color: #8695df;
    color: #ffffff;
    border: none;
    border-radius: 15px;
    font-weight: 500;
    margin: -10px;
}

.merge-button:hover  {
    opacity: 1;
}
.merge-button:hover + textarea{
    border: solid 1px #8695df;
}

textarea:has(+ .merge-button:hover) {
    border: solid 1px #8695df;
}

textarea:hover {
    border: solid 1px #8695df;
}

textarea:hover + .merge-button{
    opacity: 1;
}

.text-area input {
    padding: 0px;
    border: none;
    resize: none;
    font-family:inherit;
    font-size: 14px;
    height: auto;
    max-height: 80px;
    width: 100%;
    overflow:hidden;
}

label {
  font-weight: bold;
}

.row{
    align-items: center; /* Center the elements vertically in the row */
    justify-content: space-between; /* Push the elements to the ends of the row */
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
}

.button {
    
	border: none;
	outline: none;
	padding: 10px 20px;
	border-radius: 50px;
	background-image: linear-gradient( 135deg, #1c37d181 10%, #50f33b71 100%);
    color: #fff;
	box-shadow: 0 3px 20px 0 #0000003b;
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: background-color 0.3s ease;
    cursor: pointer;

    display: block;
    margin: 4px;
    font-weight: 600;
    width:50%;
    height: auto;

}



.button:hover {
    background-color: #0056b3;
}

.button:disabled {
    background-image: none;
    background-color: #7d7e80;
    cursor: not-allowed;
}


#audio-player {
    display: block;
    margin: 4px;
    margin-top: 10px;
    width: 100%;
    align-self: center;
    position: relative;
}

#video-player {
  margin: 4px;
  margin-top: 20px;
  width: 100%;
}

#video-component{
    margin-left: 25%;
    margin-right: 25%;
}


header {
	background-image: linear-gradient( 135deg, #1c37d181 10%, #50f33b71 100%);
    text-align: center;
	width: 100%;
	height: auto;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
	overflow: hidden;
    margin-bottom: 40px;
	border-radius: 0 0 85% 85% / 30%;
}
header .overlay{
	width: 100%;
	height: 100%;
	padding: 50px;
	color: #FFF;
	text-shadow: 1px 1px 1px #333;
  background-image: linear-gradient( 135deg, #9f05ff69 10%, #fd5e086b 100%);
	
}

header h1 {
	font-size: 40px;
	margin-bottom: 30px;
    
    font-weight: 600;
    text-align: center;
    color: #fffefe;
}

.button-header {
	border: none;
	outline: none;
	padding: 10px 20px;
	border-radius: 50px;
	color: #333;
    margin: 20px;
	background: #fff;
	box-shadow: 0 3px 20px 0 #0000003b;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header button:hover{
    background-color: #fffafa;
    color:#06478b;
    cursor: pointer;
    
}
 
  