body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

h1, h2{
    position: relative;
    top: 100px;
    line-height: 1.1;
}


h1 {
    font-size: 60px;
    text-align: center;
    color: white;
    font: "Outfit";
    font-weight: 700px;
    margin: 0;
}

h2 {
    font-size: 20px;
    text-align: center;
    color: #1F2937;
    font: "Sora";
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 1px;
    margin: 0;
}

h3 {
    font-weight: 450;
    color: #5B4E8B;
    font-size: 22px;
}

p {
    font: 'Inter';
    font-weight: 80;
    font-size: 16px;
    color: white;
}

button {
    background: #5B4E8B;
    border: solid;
    border-color: #5B4E8B;
    border-radius: 30px;
    width: 180px;
    height: 60px;
    cursor: pointer;
    position: relative;
}

.button-container {
    margin-top:130px;
    display: flex;
    justify-content: center;
}

button:hover {
    background-color: #7468a1;
    border-color: #7468a1;
}

#textarea {
    background: white;
    border: solid;
    border-color: #5B4E8B;
    border-width: 10px;
    border-radius: 20pxs;
    margin: 10px;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
}

.elem {
    margin: 10px;
}


span {
    display: inline;
    color: #5B4E8B;
}

@keyframes zoom-in-header {
    from {
        transform: scale(0.7);
        opacity: 0

    } to {
        transform: scale(1);
        opacity: 1.0
    }
}

@keyframes fade-in-text {
    from {
        opacity: 0;
    } to {
        opacity: 1;
    }
}

.animated-header {
    animation: zoom-in-header 1.5s ease;
}

.animated-subtitle{
    animation: fade-in-text 1.2s ease;
}
