@font-face {
    font-family: Abel-Regular;
    src: url(../fonts/Abel-Regular.ttf);
}
@font-face {
    font-family: SfProRegular;
    src: url(../fonts/SfProRegular.otf);
}
@font-face {
    font-family: SfProBold;
    src: url(../fonts/SfProBold.otf);
}
@font-face {
    font-family: Daydream;
    src: url(../fonts/Daydream.ttf);
}
@font-face {
    font-family: LifeSavers-Bold;
    src: url(../fonts/LifeSavers-Bold.ttf);
}

body {
    font-family: SfProRegular;
}

.ozellikBaslik {
    font-family: SfProBold;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 250px;
    border: 1px solid #f1f1f1;
    perspective: 1000px;
    cursor: pointer;

    border-radius: 5px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(15deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: rgb(236, 234, 234);
    color: black;
    
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 5px;
}

.flip-card-front-img {
    max-height: 240px;
    max-width: 80%;
}

.flip-card-back {
    background-color: dodgerblue;
    color: white;
    transform: rotateY(180deg);
}

.burc-content ul {
    text-align: left;
}

.burc-content {
    text-align: center;
}

.stone-img {
    height: 120px;
    margin-top: 5px;
    margin-left: 2px;
    margin-right: 2px;
    border-radius: 5px;
}

.baslik {
    font-family: "Daydream";
    font-size: 50px;
}

.modalBtns {
    margin-top: 20px;
}

.modalBtns button {
    min-width: 25%;
}

.bottomInfo {
    margin-top: 10px;
}

.logo_container {
    display: flex;
    justify-content: center;

    margin-top: 10px;
    margin-bottom: 10px;
}

.logo_text {
    text-align: center;
    font-family: "LifeSavers-Bold";
}

.logo {
    max-height: 120px;
}