* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

*::-webkit-scrollbar {
    display: none;
}

body {
    -webkit-font-smoothing: antialiased;
    background: linear-gradient(to right, #1ab754, #1a82bf); 
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    background: linear-gradient(to right, #12d55a, #1089d0); 
    backdrop-filter: blur(15px);
    width: 100%;
    height: 20vh;
}

.header a {
    text-decoration: none;
    font-size: 68px;
    font-weight: 400;
    text-transform: lowercase;
    font-family: 'Alata', sans-serif;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.header a:hover {
    transform: rotate3d(45deg);
}

.header a span {
    background: linear-gradient(to right, #fdfc47, #24fe41);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}

.header a span:hover {
    transform: rotate(45deg);
}

.titletext {
    color: #fff;
    font-family: 'Alata', sans-serif;
    text-align: center;
}

.textlinkbutton {
    color: #00ffff;
    font-family: 'Alata', sans-serif;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: rgb(0, 255, 128);
    font-size: 30px;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("https://cloakassets.quartinal.com/svg/meatswitch.icon.64ae2f43.svg");
    background-position: center;
    width: 100%;
    height: 25%;
}

br {
    display: block;
    margin: 40px 0;
}

h1.titletexthome {
    text-align: center;
    color: #ffffff;
    font-size: 64px;
    font-weight: 400;
    font-family: 'Alata', sans-serif;
    width: 100%;
}

.icon-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.icon {
    width: 250px;
    height: 250px;
}

