@font-face {
    font-family: "Space Mono";
    src: url(../../assets/fonts/SpaceMono-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "Mulish";
    src: url(../../assets/fonts/Mulish-VariableFont_wght.ttf) format("truetype");
}

@font-face {
    font-family: "Mulish_EL";
    src: url(../../assets/fonts/Mulish-ExtraLight.ttf) format("truetype");
}

@font-face {
    font-family: "Mulish_SB";
    src: url(../../assets/fonts/Mulish-SemiBold.ttf) format("truetype");
}

@font-face {
    font-family: "NATS";
    src: url(../../assets/fonts/NATS-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "NewsCycle";
    src: url(../../assets/fonts/NewsCycle-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "ReadexPro";
    src: url(../../assets/fonts/ReadexPro[HEXP,wght].ttf) format("truetype");
}

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

body {
    background-color: #BBD7EF;
}

.project-content {
    background-color: #A6CAE9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.project-info {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    color: black;
}

.project-img {
    width: 80px; 
    height: 80px;
}

.cta-sectiono-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-sectiono__button-second {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.cta-sectiono__button {
    background-color: #6c63ff; 
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    font-size: 16px;
}

.cta-sectiono__button a {
    text-decoration: none;
    color: black; 
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow {
    background: black; 
    height: 0.2em;
    width: 1.5em; 
    margin-right: 10px; 
    position: relative;
    transition: all 0.3s ease;
}

.arrow::before,
.arrow::after {
    content: "";
    position: absolute;
    background: black;
    height: 0.2em;
    width: 0.5em;
    right: 0;
    top: 0;
}

.arrow::before {
    transform: rotate(45deg);
    transform-origin: right bottom;
}

.arrow::after {
    transform: rotate(-45deg);
    transform-origin: right top;
}

.cta-sectiono__button:hover {
    background-color: #5a54d6; 
}

.cta-sectiono__button:hover .arrow {
    width: 2em; 
}

.article-title {
    font-family: "Space Mono";
    font-size: 30px;
    margin-left: 10%;
}