@font-face {
    font-family: 'Pixel Gosub';
    src: url('Home/Pixel-Gosub.woff2') format('woff2'),
         url('Home/Pixel-Gosub.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gogga';
    src: url('home/Gogga_Thorax.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #141414;
    font-family: 'Poor Story', cursive;
    margin: 0;
    padding: 0;
}

header {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgb(0, 0, 0);
    padding: 55px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    right: 1;
    width: 100%;
}

.logo img {
    height: 80px;
    width: auto;
    margin-right: 10px;
}

.logo {
    position: fixed;
    top: 0;
    left: 48%;
    transform: translateX(-50%);
    z-index: 9999;
}

.logo p {
    font-family: 'Pixel Gosub', sans-serif;
    color: #ffffff;
    margin: 0;
    font-size: 50px;
    margin-top: 10px;
}

.logo span {
    color: red;
}

.top-section {
    background-image: linear-gradient(#ffffff00,#0e1813),url(https://cdn.discordapp.com/attachments/887716950225064006/1217538566188564501/CoverArt2560x1440px.png?ex=66046426&is=65f1ef26&hm=c23e1039fe16cf4d66f8e1dd4a38270db7dee971bea47976e357076d99af7aa7&);
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 405px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    margin-top: 105px;
}

.top-section h1 {
    font-family: 'Gogga', sans-serif;
    font-size: 105px;
    margin-top: 10px;
}

.arrow {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid white;
    animation: arrowAnimation 1s infinite;
}

@keyframes arrowAnimation {
    0% {
        bottom: 10px;
    }
    50% {
        bottom: 20px;
    }
    100% {
        bottom: 10px;
    }
}

.container {
    background-color: #8b962c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Align to the top */
    min-height: 100vh;
    padding-top: 50px; /* Adjusted padding */
}

.privacypolicybox {
    background-color: #0e1813;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Align to the top */
    min-height: 100vh;
    padding-top: 50px; /* Adjusted padding */
}

.rotated-headlines {
    display: flex;
    justify-content: space-around;
    margin-top: 80px; /* Increased margin */
}

.rotated-item-1,
.rotated-item-2,
.rotated-item-3,
.rotated-item-4 {
    text-align: center;
    transform-origin: bottom center; /* Rotate from the bottom center */
    margin-top: 40px; /* Adjusted margin */
}

.rotated-item-1 {
    transform: rotate(-10deg) translateY(-40px); /* Adjust the rotation angle and translation */
}

.rotated-item-2 {
    transform: rotate(5deg) translateY(-40px); /* Adjust the rotation angle and translation */
}

.rotated-item-3 {
    transform: rotate(-7deg) translateY(-40px); /* Adjust the rotation angle and translation */
}

.rotated-item-4 {
    transform: rotate(12deg) translateY(-40px); /* Adjust the rotation angle and translation */
}

.rotated-item-1 h2,
.rotated-item-2 h2,
.rotated-item-3 h2,
.rotated-item-4 h2 {
    font-size: 48px; /* Increased font size */
    margin-bottom: 20px; /* Increased margin */
}

.rotated-item-1 img,
.rotated-item-2 img,
.rotated-item-3 img,
.rotated-item-4 img {
    width: 250px; /* Increased image size */
    height: 250px; /* Increased image size */
    object-fit: cover;
    border-radius: 20px; /* Increased border-radius */
}


main {
    text-align: center;
    margin-top: 60px;
}

footer {
    background-color: #000000;
    color: #fff;
    padding: 10px;
    text-align: center;
}

.become-button {
    background-color: #42b3ff;
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 30px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Lilita One', cursive;
}

.become-button:hover {
    background-color: rgb(88, 88, 88);
    color: white;
}
