@font-face {
    font-family: Liana;
    src: url("../Font/LianaRegular.ttf");
}
@font-face {
    font-family: EBGaramond;
    src: url("../Font/EBGaramond-Regular.ttf");
}

body {
    margin: 0;
}
.sama_logo_image {
    width: auto;
    height: 4.5rem;
}
.redirection_text_sama {
    text-decoration: none;
    color: #557c70;
    padding: 0.75rem 1rem;
    border: 1px solid #557c70;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-align: center;
    text-transform: uppercase;
    font-family: EBGaramond;
}
.card_container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.sama_backgroun_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sama_overlay_texts {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
}
.sama_head_text {
    font-family: Liana;
    color: #cd97ae;
    font-size: 2.75rem;
    font-weight: 400;
    padding: 0 0.5rem;
    margin: 0;
}
.sama_para_text {
    font-family: EBGaramond;
    font-size: 1rem;
    color: #557c70;
    margin: 0;
    padding: 0 0.5rem;
}
.sama_para_text_container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
@media only screen and (max-width: 768px) {
    .sama_head_text {
        font-size: 2rem;
    }
    .sama_para_text {
        font-size: 0.85rem;
    }
    .redirection_text_sama {
        font-size: 8px;
    }
    .sama_overlay_texts {
        gap: 1.25rem;
    }
}