@import url(./adoptation.css);
@import url(./fonts.css);
@import url(./colors.css);



/* set to default */

*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: OpenSans;
    background-color: var(--light-theme-bckg-clr);
    color: var(--light-theme-txt-clr);
    margin: 0 20px;
    padding: 0;
}

button {
    font-family: OpenSans;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

/*
h1 {
    text-align: center;
    color: #2d87f0;
    font-size: 2.5rem;
    margin-bottom: 30px;
}
h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #444;
}
p {
    font-size: 1rem;
    margin-bottom: 15px;
}
.step {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.step img {
    width: 20%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}
.note {
    background-color: #e9ecef;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #007bff;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}
th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
th {
    background-color: #f1f1f1;
}
.example {
    font-weight: bold;
    color: #007bff;
}
.btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 1.1rem;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background-color: #0056b3;
} */