*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
}

:root{
    --bg-color: #2a2a2a;
    --second-bg-color: #202020;
    --text-color: #fff;
    --second-color: #ccc;
    --main-color: #ff4d05;
    --big-font: 5rem;
    --h2-font: 3rem;
    --p-font: 1.1rem;
}

body{
    background-color: var(--bg-color);
}

.main h2{
    color: #ff4d05;
    margin-top: 30px;
    text-align: center;
    font-weight: 700;
    font-size: var(--h2-font);
    line-height: 1;
}

.main span{
    color: #fff;
}

.main h4{
    color: var(--second-color);
    font-size: var(--p-font);
    line-height: 1.6;
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 30px;
}

image{
    width: 100%;
}

.abc{
    color: var(--text-color);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 1.5rem ;
    padding-left: 35px;
    padding-top: 50px;
    padding-right: 35px;
    margin-bottom: 20px;
    margin-left: 30px;
    margin-right: 30px;
}

.abc p span{
    color: var(--second-color);
}

.Back-button a{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid var(--main-color);
    padding: 12px 34px;
    font-size: 15px;
    background: transparent;
    position: relative;
}

.Back-button a:hover{
    background-color: var(--main-color);
    color: aliceblue;
}

.button{
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 50px;
}