* {
    text-decoration: none;
}

body {
    background: #000;
    color: #ff0000;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    height: 100%;
    position: relative;
}

header {
    background-color: #111;
    padding: 10px 0;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ff0000;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

.container-wrapper {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;
    height: 100%;
    padding: 0 20%;
    margin-top: 5%;
}

.container {
    width: 35%; 
}

i {
    margin-right: 3px;
}

iframe {
    border: 2px solid rgba(255, 0, 0, 0.7);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    border-radius: 15px;
    margin-left: -7px;
    width: 100%;
}

.box, .box1 {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(255, 0, 0, 0.7);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.7);
    color: #ff4d4d;
    height: 30%;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 20px;
    box-sizing: border-box;
}

.box::before, .box1::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(255, 0, 0, 0.7);
    z-index: -1;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
    transition: box-shadow 0.3s ease;
    border-radius: 20px;
}


.box h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff1a1a;
}

.botao {
    display: inline-block; 
    padding: 10px 70px;
    margin: 8px;
    font-size: 18px;
    border: 2px solid #ff0000;
    background-color: #111;
    color: #ff0000;
    text-align: center; 
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease; 
    border-radius: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    text-decoration: none; 
    
}

.botao:hover {
    transform: scale(1.05); 
    background-color: #680101;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
}

.box img {
    width: 50%;
    height: auto;
    border: 2px solid rgba(255, 0, 0, 0.7);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
    margin-bottom: 20px;
    border-radius: 50px;
}

.box p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #d1d1d1;
}

.discord-link img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.discord-link img:hover {
    transform: scale(1.0);
}

#introVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(50px);
    z-index: -1;
}

@media (max-width: 768px) {

    .box h2 {
        font-size: 1.2em; 
    }

    .box p {
        font-size: 1em; 
    }

    .botao {
        font-size: 0.9em; 
    }


    .container-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .container {
        width: 90%;
        margin: 10px;
    }

    .box, .box1 {
        padding: 15px;
    }

    .box img, .box1 iframe {
        width: 100%; 
        height: auto;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 10px 0;
    }
}


@media (max-width: 480px) {

    .box h2 {
        font-size: 1.1em; 
    }

    .box p {
        font-size: 0.7em; 
    }

    .botao {
        font-size: 0.9em; 
    }

    .container-wrapper {
        padding: 10px;
    }
}