@font-face {
    font-family: 'dana';
    src: url('../font/dana-medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ManchetteFine';
    src: url('../font/ManchetteFine_V2-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Dana";
    display: grid;
    place-items: center;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

button, a, div {
    font-family: "Dana";
}

span, p {
    font-family: "ManchetteFine";

}

:root {
    --cl-secondary: #e08e30;
    --cl-bg-primary: #fff4e1;
    --cl-primary: #f4e8d2;
    --cl-primary-darken: #e1d4bd;
    --cl-secondary-green: #1E3932;
    --mobile-max-width: 426px;
    --ff-primary: "Dana";
    --ff-secondary: "ManchetteFine";
    --fs-sm: 14px;
}

.main-container {
    position: relative;
    width: 426px;
    height: 100vh;
    overflow: hidden;
    margin-inline: auto;
}

@media (max-width: 426px) {
    .main-container {
        width: 100%;
    }
}

.video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


.overly {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.overlay-center {
    position: absolute;
    width: 330px;
    height: 600px;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    background-color: var(--cl-bg-primary);
    border-radius: 500px 500px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 200px;
    box-sizing: border-box;
    z-index: 2;
}

.overlay-line {
    position: absolute;
    width: 300px;
    height: 575px;
    left: 50%;
    top: 2%;
    transform: translateX(-50%);
    border: 2px solid #1E3932;
    border-radius: 500px 500px 0px 0px;
}

.logo {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.logo img {
    width: 110px;
}

.actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    height: 100%;
    justify-content: space-between;
    position: relative;
    bottom: 6%;
}

.actions-item-container {
    gap: .5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.actions-item {
    background-color: var(--cl-secondary);
    padding: 5px 0;
    border-radius: 60px;
    text-align: center;
    width: 100px;
    transition: 0.3s;
}

.actions-item a {
    text-decoration: none;
}

.content-title {
    color: var(--cl-bg-primary);
    font-size: var(--fs-sm);
    font-weight: bold;
    text-align: center;
    pointer-events: none;
}

.description {
    max-width: 230px;
    text-align: justify;
    line-height: 1.8;
    font-weight: bold;
    justify-content: center;
    font-size: var(--fs-sm);
}

.description p {
    color: var(--cl-secondary-green);
}

.information {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    width: 240px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 600px;
}

.info-line {
    flex: 1;
    height: 2px;
    background-color: var(--cl-secondary);
}

.info-icon {
    width: 20px;
    display: flex;
    justify-content: center;
}

.info-icon img {
    width: 20px;
    height: auto;
    object-fit: cover;
}

.info-text {
    white-space: nowrap;
    font-size: 10px;
    text-align: right;
    color: var(--cl-secondary);
}

.Copy-right img {
    width: 130px;
}

@media (max-width: 380px) {
    .overlay-center {
        width: 90%;
        padding-top: 150px;
    }

    .actions {
        width: 90%;
        max-height: 540px;
    }
    .actions-item-container {
        position: relative;
        top: 10%;
    }
}


