* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "TASA Explorer", sans-serif;
}

body {
    background-color: var(--main-background);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/*first section*/
.first {
    display: flex;
    margin: 5% 15%;
    height: 90%;
    width: 70%;
    background-color: var(--third-background);
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.first_data {
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    gap: 0.5rem;
}

.first_data span {
    background-color: var(--main-background);
    width: fit-content;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.first_data span h2 {
    font-size: 1rem;
    color: var(--main-text);
}

.first img {
    width: auto;
    height: 50vh;
    display: none;
    transition: all 0.3s ease;
}

#first_1 {
    display: unset;
}

.first h2 {
    font-size: 1.5rem;
    color: var(--main-text);
}

.first p {
    font-size: 1rem;
    color: var(--main-text);
    display: none;
}

#text_1 {
    display: unset;
}

/*footer section*/
.footer {
    display: flex;
    padding: 5% 15%;
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
    background-color: var(--accent-2);
}

.footer_section {
    display: flex;
    flex-direction: column;
    width: inherit;
}

.footer h2 {
    font-size: 2rem;
    color: var(--main-text);
}

.footer p {
    font-size: 1rem;
    color: var(--main-text);
}

.footer a {
    text-decoration: none;
    color: var(--main-text);
    display: flex;
    align-items: center;
}

.footer a img {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}