*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "yekanbakh";
    src: url(./fonts/YekanBakh-Regular.ttf);
}
@font-face {
    font-family: 'yekanbold';
    src: url(./fonts/YekanBakh-Bold.ttf);
}
:root{
    --first-color: #1B95A2;
    --second-color: #E1C886;
}

body {
    width: 100%;
    height: 100vh;
    background-color: var(--first-color);
    font-family: 'yekanbold';
}

a{
    text-decoration: none;
    color: black;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

section {
    background-color: aliceblue;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px 1px #0000004b,
                0 0 20px 1px #00000027;
}


.card-body {
    border: 2px solid var(--second-color);
    padding: 10px;
    background-color: white;
    border-radius: 20px;
}

.card-body img {
    width: 250px;
    height: 250px;
}

.down {
    margin-top: 20px;
    font-size: 18px;
}

#live , #lite {
    background-color: var(--second-color);
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    margin: .7rem;
    transition: .5s all ease;
    box-shadow: 0px 3px 2px 2px #e1c986b9,
                0 0 1px 1px #e1c986b9;
}

#full {
    background-color: var(--first-color);
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    color: white;
    margin: .5rem;
    transition: .5s all ease;
    box-shadow: 0px 3px 2px 2px #1b94a27e,
                0 0 1px 1px #1b94a27e;
}

#full:hover {
    background-color: var(--second-color);
    color: black;
    box-shadow: 0 0 2px 2px #E1C886,
                0 0 1px 1px #E1C886;
}


#lite:hover, #live:hover {
    background-color: var(--first-color);
    color: white;
    box-shadow: 0 0 2px 2px #1B95A2,
                0 0 1px 1px #1B95A2;
}

section h2 {
    margin-bottom: 20px;
    color: black;
    text-shadow: 1px 1px var(--second-color);

}

section .we {
    margin-top: 30px;
    font-size: 16px;

}


#tooltip , #tooltip1, #tooltip2 {
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.news{
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    right: 13px;
    justify-content: end;
    align-items: start;
}

.news h4{
    font-size: 16px;
}

.news li{
    font-size: 14px;
    color: #333;
    position: relative;
    right: 12px;
}

@media (max-width: 1366px) {

.card-body {
    border: 2px solid var(--second-color);
    padding: 10px;
    background-color: white;
    border-radius: 20px;
}
.card-body img {
    width: 150px;
    height: 150px;
}
.down {
    margin-top: 20px;
    font-size: 12px;
}

#live , #lite {
    background-color: var(--second-color);
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    margin: .7rem;
    transition: .5s all ease;
    box-shadow: 0px 3px 2px 2px #e1c986b9,
                0 0 1px 1px #e1c986b9;
}

#full {
    background-color: var(--first-color);
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    color: white;
    margin: .5rem;
    transition: .5s all ease;
    box-shadow: 0px 3px 2px 2px #1b94a27e,
                0 0 1px 1px #1b94a27e;
}

#full:hover {
    background-color: var(--second-color);
    color: black;
    box-shadow: 0 0 2px 2px #E1C886,
                0 0 1px 1px #E1C886;
}


#lite:hover, #live:hover {
    background-color: var(--first-color);
    color: white;
    box-shadow: 0 0 2px 2px #1B95A2,
                0 0 1px 1px #1B95A2;
}

section h2 {
    margin-bottom: 20px;
    color: black;
    text-shadow: 1px 1px var(--second-color);

}

section .we {
    margin-top: 30px;
    font-size: 12px;

}


#tooltip , #tooltip1, #tooltip2 {
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.news{
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    right: 13px;
    justify-content: end;
    align-items: start;
}

.news h4{
    font-size: 12px;
}

.news li{
    font-size: 10px;
    color: #333;
    position: relative;
    right: 12px;
}
    
}

@media (max-width: 600px) {
    .down {
        flex-wrap: wrap;
        display: flex;
        justify-content: space-between;
    }
    #full,#lite,#live{
        font-size: 14px;
        padding: 8px 20px;
    }

    #live{
        margin-top: 30px;
        display: flex;
        margin-right: 80px;
    }
    #tooltip , #tooltip1 {
        position: absolute;
        background-color: #333;
        margin-top: -100px;
        color: #fff;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

