* {
    font-family: shabnam;
}

body {
    margin: 0;
    background-color: #1C1B2A ;
}

a {
    text-decoration: none;
}

.main-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    height: 100vh;
    gap: 30px;
}

.image-section {
    width: 100%;
    position: relative;
}

.text {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%, 50%); 
    color: #FFFFFF;
    font-size: 18px;
    background-color: #7E5A9B;
    font-weight: 600;
    white-space: nowrap; 
    padding: 10px 10px;
    border-radius: 6px;
}

.text2 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap; 
}


.button-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}

.button {
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    gap: 9px;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #B57BA6 ;
    background-color: #7E5A9B  ;
}

.button-section a {
    --border-width: 2px;
    border-radius: 10px;
    border: var(--border-width) solid;
    border-radius: 10px;
    border-image: conic-gradient(from var(--angle), rgb(255, 255, 255) 0%, #ffffff 0%, #ffffff 0%, #be018c 100%)1;
    animation: spin 6s linear infinite;
    padding: 2px 5px;
}

.button-section a:hover {
    animation-play-state: running;
}

.button-section a::before {
    border-radius: 20px;
    position: absolute;
    inset: calc(var(--border-width)* -1);
    z-index: -1;
}

@property --angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}

@keyframes spin {
    to {
        --angle: 1turn;
    }
}

.image {
    width: 100%;
    height: 350px;
}

.footer {
    position: fixed;
    width: 100%;
    right: 0;
    bottom: 0;
}

.footer-text {
    font-size: 11px;
    color: #f1f1f1;
}