html, body {
    margin: 0;
    background-color: #f2ebde;
    font-family: Inter, sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    letter-spacing: -0.6px;
    font-variation-settings: 'slnt' 0;
    color: #232a26;
    -moz-osx-font-smoothing: grayscale;
}

html ::selection, body ::selection {
    background-color: #ff5c25;
}

section {
    height: 90dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    margin: 2%;
    line-height: 28px;
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

footer {
    height: 10dvh;
    display: flex;
    justify-content: flex-end;
    align-items: end;
}

footer .motif {
    margin: 0 25px -1px;
    height: 50px;
    width: 50px;
    background-image: url(../assets/motif.svg);
    background-repeat: no-repeat;
    background-size: contain;
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.container {
    display: flex;
    width: 88%;
    padding-bottom: 51.69%;
    position: relative;
    margin: 2% auto 0;
    align-items: center;
    justify-content: center;
}

iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #F2EFEA;
    border-radius: 12px;
}

.fixed-investor-button {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: white;
    background-color: black;
    text-decoration: none;
    font-size: 14px;
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    clip-path: polygon(
        10px 0,                /* Top-left cut */
        calc(100% - 10px) 0,   /* Top-right cut */
        100% 10px,             /* Right-top cut */
        100% calc(100% - 10px),/* Right-bottom cut */
        calc(100% - 10px) 100%,/* Bottom-right cut */
        10px 100%,             /* Bottom-left cut */
        0 calc(100% - 10px),   /* Left-bottom cut */
        0 10px                 /* Left-top cut */
    );
}


.fixed-investor-button:hover {
    background-color: #ff5c25;
}