:root{
    --accent: #374283;
    --accent_rgb: 50, 46, 106;
    --sub-accent: #741012;
    --sub-accent_rgb: 116, 16, 18;
    --main-bg-rgb:240, 223, 215;
    --color-2: #98463c;
}

body {
    margin: 0;
    padding: 0;
    font-family: system-ui;
}

.flex_column{
    display: flex;
    flex-direction: column;
}

.width_85per{
    width: 85%;
}

.gap_7px{
    gap: 7px;
}

.pd_10px{
    padding-left: 10px;
}

.horizontal_line {
    height: 1px;
    width: 100%;
    height: 2px;
    background-color: #b8b8b8;
    margin: 30px 0;
}

.eva--arrow-back-outline {
    display: inline-block;
    width: 1em;
    height: 1em;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19 11H7.14l3.63-4.36a1 1 0 1 0-1.54-1.28l-5 6a1.19 1.19 0 0 0-.09.15c0 .05 0 .08-.07.13A1 1 0 0 0 4 12a1 1 0 0 0 .07.36c0 .05 0 .08.07.13a1.19 1.19 0 0 0 .09.15l5 6A1 1 0 0 0 10 19a1 1 0 0 0 .64-.23a1 1 0 0 0 .13-1.41L7.14 13H19a1 1 0 0 0 0-2'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }

.css1{
    width: 100%;
    height: 100vh;
    background-image: url("../img/Moon.svg");
    background-size: 100% 100vh;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.linkBox{
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #00000017;
    padding: 30px 0;
    border-radius: 30px;
    border: 1px solid #00000014;
    opacity: 0;
    animation: fadeIn 1s forwards;
    text-decoration: none;
    backdrop-filter: blur(3px);
}

.linkBox:nth-child(1){
    animation-delay: 0.5s;
}

.linkBox:nth-child(2){
    animation-delay: 1s;
}

@keyframes fadeIn{
    from{
        opacity: 0;
        filter: grayscale(1);
    }
    to{
        opacity: 1;
        filter: grayscale(0);
    }
}

.linkBox img{
    width: 100px;
}
.mainCss {
    height: 100vh;
    width: 100%;
    background-image: url("../img/Moon.svg");
    background-size: cover;
}

.logoCss {
    width: 40%;
}

.logoCss img {
    width: 100%;
}

.detailCss{
    display: flex;
    gap: 10px;
    background-color: white;
    padding: 10px 15px;
    box-sizing: border-box;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 15px 8px -15px rgba(0,0,0,0.2);
}

.detailCss:nth-child(1){
    margin-top: 50px;
}

.titleCss{
    color: var(--accent);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.innerCss{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 30px;
    padding-top: 15%;
    box-sizing: border-box;
    backdrop-filter: blur(3px);
}

.sectionCss{
    /* background-color: rgba(255, 255, 255, 0.9); */
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    padding-bottom: 40px;
    animation: 1s fadeIn;
}

@keyframes fadeIn {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
    
}

.detailCss:nth-child(3){
    margin-bottom: 10px;
}

.detailCss svg{
    width: 8%;
    fill: var(--sub-accent);
}

.detailCss path{
    fill: var(--sub-accent);
}

.detailCss a {
    width: 90%;
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
}

.socialIcon{
    margin-top: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50px;
    box-shadow: 0 15px 8px -15px rgba(0,0,0,0.2);

}

.socialIcon a{
    width: 30px;
    height: 30px;
}

.socialIcon svg{
    width: 30px;
    height: 30px;
}

.socialIcon path{
    fill: var(--sub-accent);
}

.backbtn{
    font-size: 15px;
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: black;
}