* {
    margin: 0;
}

body {
    font-family: 'segoe ui', sans-serif;
    color: white;
    width: 100vw;
    overflow-x: hidden;
    padding: 0;
}

body p, body h1, body h2 {
    margin-inline: 10px;
}

nav {
    width: 100vw;
    height: 80px;
    background-color: #224dbd;
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

nav a {
    text-decoration: none;
    color: white;
    padding-inline: 20px;
}

nav a:hover {
    color: #7347c2;
    transition: color 0.3s ease-in-out;
    cursor: pointer;
}

.welcome {
    width: 100vw;
    height: 95vh;
    justify-items: center;
    align-content: center;
    background-color: #224dbd;
    padding-top: 80px;
}

.ultimatebutton {
    background-color: #7347c2;
    display: flex;
    color: white;
    align-items: center;
    padding-inline: 10px;
    padding-block: 5px;
    border-radius: 20px;
}

.ultimatebutton img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.welcome h1 {
    font-size: 55px;
    text-align: center;
    margin-block: 10px;
}

.welcome-text {
    margin-block: 24px;
}

.welcome-text p {
    font-size: 20px;
    text-align: center;
    margin-block: 10px;
}

.download-button-div {
    display: flex;
    justify-content: center;
}

.download-button {
    max-width: 300px;
    height: 50px;
    margin-block: 20px;
    background-color: #fbffff;
    background-image: linear-gradient(to bottom right, yellow, #fa7f20);
    color: #552aaf;
    font-size: 1.5rem;
    border-radius: 15px;
    border: none;
    transition: transform 0.3s ease-in-out;
}

.download-button:hover {
    transform: scale(1.05);
    background-color: #dcd6e9;
    cursor: pointer;
}

.dots {
    max-width: 90vw;
    align-self: center;
}

.dots ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding-inline: 10px;
    gap: 50px;
}

.dots ul li {
    color: rgba(255, 255, 255, 0.5);
}

.dots ul li::marker {
    color: yellow;
}

.whyus {
    width: 100%;
    justify-items: center;
    color: black;
    padding-bottom: 50px;
}

.whyus-title {
    padding-top: 80px;
    padding-bottom: 20px;
    text-align: center;
}

.whyus-title h1 {
    font-size: 50px;
    text-align: center;
    margin-block: 10px;
}

.whyus-title p {
    font-size: 20px;
    text-align: center;
    margin-block: 10px;
    color: darkslategrey
}

.whyus-features {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    max-width: 90%;
}

.feature {
    width: 400px;
    padding: 20px;
    margin: 20px;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-image: linear-gradient(to bottom right,#f9fafc, #f4f5f7)
}

.feature:hover {
    transform: scale(1.05);
    z-index: 1;;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.feature-image {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    background-image: linear-gradient(to bottom right, #3d7ff2, #873fea);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image img {
    width: 45px;
    height: 45px;
    justify-self: center;
}

.readytoplay {
    background-color: #224dbd;
    justify-items: center;
    padding-top: 80px;
}

.readytoplay h1 {
    font-size: 50px;
    text-align: center;
    margin-block: 10px;
}

.readytoplay p {
    font-size: 20px;
    text-align: center;
    margin-block: 10px;
}

.download-button-container {
    justify-items: center;
    width: 80%;
    background-image: linear-gradient(to bottom right, #6b5eec, #8c49e6);
    margin: 50px;
    padding: 20px;
    border-radius: 20px;
}

.download-button-text {
    display: flex;
}

.download-button-text img {
    width: 100px;
    height: 100px;
}

.download-button-text-content {
    align-content: center;
    height: 100px;
}


.download-button-text-content p {
    font-size: 100%;
}

.download-button-bottom-text p {
    font-size: 15px;
    text-align: center;
    color: #d1baff;
}

.troubleshoot {
    max-width: 400px;
    padding: 20px;
    margin: 20px;
    border-radius: 15px;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    background-image: linear-gradient(to bottom right, #6b5eec, #8c49e6);
    display: flex;
    gap: 50px;
    
}

.troubleshoot h2 {
    align-content: center;
    margin-block: 10px;
    color: white;
}

a {
    text-decoration: none;
}


.troubleshoot:hover {
    transform: scale(1.05);
    z-index: 1;;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.troubleshoot-image {
    width: 80px;
    height: 80px;
    background-image: linear-gradient(to bottom right, #3d7ff2, #873fea);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.troubleshoot-image img {
    width: 45px;
    height: 45px;
    justify-self: center;
}

footer {
    width: 100%;
    background-color: #111828;
}

footer p, footer h3, footer h4 {
    text-align: center;
}

.footer-columns {
    display: flex;  
    justify-content: space-around;
    text-align: left;
    align-items: center;
    height: 100%;
    flex-wrap: wrap;
    padding-block: 60px;
    gap: 40px;
}

.footer-center, .footer-right {
    min-width: 250px;
}

.footer-columns p a{
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    width: 100%;
    height: 50px;
    background-color: #111828;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
}

.rules-page {
    color: black;
    padding-block: 80px;
    padding-inline: 40px;
    line-height: 2;
}

.rules-page h1, .rules-page h2 {
    padding-top: 20px;
}

.troubleshooting-welcome {
    width: 100vw;
    height: 20vh;
    padding-block: 80px;
    background-color: #224dbd;
    text-align: center;
    align-content: center;
    position: fixed;
}

.troubleshooting-options {
    margin-top: 50vh;
}

.troubleshooting-welcome h1 {
    font-size: 50px;
    margin-block: 10px;
    color: yellow;
}

.troubleshooting-page {
    color:black;
    padding-block: 20px;
    min-height: 100vh;
}

.troubleshooting-solution {
    background-color: #224dbd;
    background-image: linear-gradient(to bottom right, #6b5eec, #8c49e6);
    padding: 20px;
    padding-top: 50vh;
}

.troubleshooting-solution ol li, .troubleshooting-solution p {
    font-size: 20px;
    margin-block: 10px;
    color: white;
}

.troubleshooting-solution button {
    margin-left: 20px;
}