main {
    padding: 0 17%;
    box-sizing: border-box;
}

.hero {
    width: 100%;
    height: 700px;
    color: white;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
    justify-content: center;
    align-items: center;
    background-color: red;
    background: rgb(250, 73, 51);
    background: linear-gradient(142deg, rgba(250, 73, 51, 1) 0%, rgba(214, 65, 61, 1) 100%);
}

.hero .buttons {
    position: relative;
    margin-top: 60px;
    display: flex;
    gap: 30px;
}

.hero .buttons a {
    font-size: 18px;
    min-width: 130px;
    padding: 13px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
}

.hero .buttons a:nth-child(1) {
    background-color: white;
    color: black;
}

.hero .buttons a:nth-child(2) {
    background-color: transparent;
    color: white;
    border: solid white 1px;
}

.hero .buttons img {
    height: 35px;
}

.hero .textContainer {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeIn 0.5s forwards;
}

.hero span:nth-child(1) {
    font-size: 80px;
    font-weight: bold;
}

.hero span {
    font-size: 20px;
}

section {
    display: flex;
    width: 100%;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

section img {
    width: 44%;
    cursor: pointer;
}

section h2 {
    display: flex;
    gap: 10px;
    font-size: 25px;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-bottom: 20px;
}

section h2 img {
    width: 50px;
    height: 50px;
}

section .content {
    font-size: 20px;
}

section #webp {
    will-change: auto;
    transform: translateZ(0);
}

section:nth-child(odd) {
    flex-direction: row-reverse;
}

.intro img {
    cursor: unset;
    width: 200px;
    min-width: 200px;
}

.homeMedia {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.493);
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: not-allowed;
}

.homeMedia img {
    max-width: 80%;
    max-height: 75%;
    z-index: 52;
}

.homeMedia .loader {
    width: 75px;
    height: 75px;
    position: absolute;
    border-radius: 50%;
    border: solid 10px transparent;
    border-bottom: solid 10px red;
    animation: spin 1s linear infinite;
    filter: drop-shadow(0 0 5px white);
    z-index: 51;
}

.homeMedia .loader::before {
    content: '';
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 70%;
    height: 70%;
    z-index: 500;
}

.poweredByTizonaServer {
    border: solid gray 2px;
    border-radius: 10px;
    box-sizing: border-box;
    margin-top: 200px;
    width: 80%;
    padding: 20px 50px;
    margin: auto;
}

.poweredByTizonaServer p {
    margin-bottom: 0;
}

.poweredByTizonaServer h2 {
    margin-top: 0;
    margin-bottom: 0;
}

.poweredByTizonaServer h3,
.poweredByTizonaServer h2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.poweredByTizonaServer h3 img,
.poweredByTizonaServer h2 img {
    width: 50px;
    max-height: 50px;
}

.features {
    margin: 10px auto;
    display: grid;
    grid-template-columns: repeat(3, 25%);
    justify-content: space-around;
}

@media screen and (max-width:1300px) {
    main {
        padding: 0 50px;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
