@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@600&family=Poppins&family=Rubik+Moonrocks&display=swap');

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    list-style-type: none;
    scroll-behavior: smooth;
}

body {
    /* background-color: black; */
    background-color: #121212;
    /* background-color: #1C1C1C; */
    color: whitesmoke;
    font-family: Arial, sans-serif;
    height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #000;
    width: 100%;
}

.logo {
    color: white;
    width: 250px;
}

span {
    color: red;
}

#nav-toggle {
    display: none;
}

.nav-icon {
    display: none;
    cursor: pointer;
}

.nav-icon #menu-icon,
.nav-icon #close-icon {
    color: white;
    font-size: 30px;
}

nav {
    display: flex;
    width: 100%;
    justify-content: center;
}

nav ul {
    display: flex;
    justify-content: space-between;
}

nav li {
    padding: 0 20px;
}

nav a {
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

nav a:hover {
    color: red;
}

.btn {
    padding: 10px 20px;
    background-color: red;
    color: white;
    font-weight: bold;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: white;
    color: black;
    cursor: pointer;
}

.heading span {
    color: red;
}

@media (max-width: 425px) {
    #nav-toggle {
        display: none;
    }

    .nav-icon {
        display: block;
    }

    #close-icon {
        display: none;
    }

    nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: rgba(0, 0, 0, 0.904);
        width: 100%;
        height: 30vh;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        flex-direction: column;
        align-items: center;
        z-index: 1000;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    nav li {
        padding: 15px 0;
        width: 100%;
        text-align: center;
    }

    nav a {
        color: white;
    }

    #nav-toggle:checked~nav {
        display: flex;
    }

    #nav-toggle:checked~.nav-icon #menu-icon {
        display: none;
    }

    #nav-toggle:checked~.nav-icon #close-icon {
        display: block;
    }

    .btn {
        display: none;
    }
}

@media screen and (min-width: 768px) and (max-width:860px) {
    #nav-toggle {
        display: none;
    }

    header {
        display: flex;
        justify-content: space-between;
    }

    nav {
        display: flex;
        width: 100%;
        justify-content: space-around;

    }

}

.about {
    padding: 10px;
    height: auto;
}

.imagy {
    display: flex;
    justify-content: space-around;
    border-radius: 5px;
}

video {
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    /* padding: 8px; */
}

.desc {
    width: 90%;
    padding: 20px;
    /* border: 2px solid grey; */
    border-radius: 15px;
    margin-left: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.desc h2 {
    font-size: 30px;
    font-family: 'Rubik Moonrocks', cursive;
    font-family: 'Frank Ruhl Libre', serif;
    text-align: center;
    color: #000;
}

.desc h3 {
    font-family: Arial, Helvetica, sans-serif;
}

.desc h3,
.descspan {
    font-size: 32px;
    margin-top: 20px;
    text-align: center;
}

.desc h2,
h3,
p,
span {
    background-color: transparent;
    line-height: 23px;
}

.desc p {
    float: right;
    word-wrap: break-word;
    color: azure;
    font-size: 18px;
    line-height: 27px;
    font-family: monospace;
    margin-bottom: 40px;
}

.heading,
h2 {

    background-color: transparent;
}

a {
    background-color: transparent;
}

.action {
    background-color: transparent;
    width: 70%;
    display: inline-block;
    justify-content: center;
    margin: 0 120px;
}

.btn3 {
    margin: 0 30px;
    padding: 10px 20px;
    border-radius: 3px;
    background-color: red;
    color: white;
    transition: 0.5s;
    cursor: pointer;
}

.btn3:hover {
    transform: translate(5px, 12px);
    position: relative;
    border: 2px solid black;

}

.extra {
    justify-content: space-between;
    position: relative;
    top: 110px;
    background: transparent;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: transparent;
}

.box {
    display: flex;
    flex-direction: column;
    width: 400px;
    border-radius: 5px;
    background-color: transparent;
    margin: 6px;
}

.box img {
    border-radius: 5px;

}

.box:hover {
    transform: scale(1.05);
    top: 5px;
    border: 1px solid wheat;

}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .imagy {
        display: flex;
        flex-direction: column;
    }


    .profile {
        display: block;
        /* margin-top: 120px; */
    }

    .desc {
        margin-top: 10px;
        text-align: justify;
        /* width: 100%; */
        /* height: 400px; */
        border: 0;
    }

    .desc h3,
    span {
        margin-top: 5px;
        font-size: 26px;
    }

    .desc p {
        line-height: 30px;
        width: 100%;
        font-size: 18px;
    }

    .desc .action {
        position: relative;
        display: flex;
    }

    .extra {
        float: left;
        display: flex;
        position: relative;
    }

    .box {
        width: 300px;
    }
}

@media (max-width: 425px) {
    .imagy {
        display: flex;
        flex-direction: column;
    }

    .desc {
        margin-top: 10px;
        text-align: justify;
        width: 90%;
        /* height: 500px; */
        border: 0;
        /* padding: 0 10px; */
    }

    .desc h3,
    span {
        margin-top: 5px;
        font-size: 17px;
    }

    .desc p {
        font-size: 13.5px;
        text-align: start;
    }

    .desc .action {
        position: relative;
        display: flex;
        right: 100px;
    }
}