body {
    height: 100vh;
    width: 100%;
    background-color: var(--bg-color);
}

main {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

section {
    height: calc(100vh);
    width: 100%;
}

.stats-container {
    position: absolute;
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    top: 80px;
    margin-top: 100px;
    padding: 0 20px;
}

.stats-item {
    height: 100%;
    width: 25%;
    border-radius: 6px;
    background-color: var(--item-color);
    display: flex;
}

.stats-item-image {
    height: 100%;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-item-color);
    border-start-start-radius: 6px;
    border-end-start-radius: 6px;
}

.stats-item-image img {
    max-height: 60%;
    max-width: 60%;
    user-select: none;
}

.stats-item-content {
    position: relative;
    height: 100%;
    width: 60%;
}

.stats-item-wrap {
    position: absolute;
    display: flex;
    flex-direction: column;
    right: 10px; bottom: 10px;
    text-align: right;
    gap: 5px;
}

.stats-count-yellow {
    font-size: 24px;
    margin-bottom: 5px;
    color: #dfd700;
    text-shadow: 1px 1px 5px #dfd700;
}

.stats-count-green {
    font-size: 24px;
    margin-bottom: 5px;
    color: #3eaf30;
    text-shadow: 1px 1px 5px #3eaf30;
}

.stats-count-orange {
    font-size: 24px;
    margin-bottom: 5px;
    color: #F67B63;
    text-shadow: 1px 1px 5px #F67B63;
}

.stats-count-magenta {
    font-size: 24px;
    margin-bottom: 5px;
    color: #a680fe;
    text-shadow: 1px 1px 5px #a680fe;
}

.stats-title {
    color: var(--text-grey-color);
    font-size: 12px;
    font-weight: 700;
}

.presentation {
    position: absolute;
    height: calc(100vh - 260px - 25px);
    width: 100%;
    display: flex;
    top: 260px;
    padding: 8% 18%;
}

.presentation-texts {
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 25px;
    padding: 0 50px;
}

.presentation-texts h1 {
    color: var(--text-white-color);
}

.presentation-texts-image {
    position: absolute;
    height: 35px;
    padding-top: 4px;
    padding-left: 5px;
}

.presentation-texts-image img {
    height: 100%;
    user-select: none;
}

.presentation-texts span {
    color: var(--text-grey-color);
}

.presentation-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    border: none;
    border-radius: 6px;
    padding: 15px 20px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    background-color: var(--primary-color);
    transition: 0.4s;
    text-decoration: none;
    font-size: 14px;
}

.btn-primary:hover {
    background-color: var(--primary-hover-color);
}

.presentation-image {
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.presentation-image img {
    height: 120%;
    max-width: 120%;
    object-fit: cover;
    margin-left: 25px;margin-bottom: 25px;
    user-select: none;
}


.box-container {
    height: 60%;
    width: 100%;
    display: flex;
    gap: 25px;
    padding: 0 25px;
}

.box {
    height: 80%;
    width: 33%;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    background-color: var(--item-color);
}

.box-img {
    height: 50%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.box-title {
    width: 100%;
    font-weight: bold;
    font-size: 24px;
    color: var(--primary-color);
    text-align: center;
}

.box-text {
    color: var(--text-grey-color);
    width: 100%;
    text-align: center;
    padding: 25px;
    font-size: 15px;
}