
/*@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* { /* remove predefined margins and borders */
    margin: 0;
    padding: 0;
    box-sizing: border-box;

} 
html {
    font-family: "Ubuntu", sans-serif; font-weight: 700; font-style: normal; 
    line-height: 1.5rem;  
    background-color: #202020;
    color: antiquewhite;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;        
}
h1 {
    font-size: 40px;
    line-height: 40px;
    color:burlywood;
    text-align: center;
    margin-bottom: 10px;
}
h2 {
    line-height: 30px;
    color:burlywood;
}
h3 {
    font-size: 20px; 
    color:burlywood;
}
h4 {
    font-size: 25px; 
    color:green;
}
h6 {
    font-size: 15px; 
    color:burlywood
}
.big_font {
    font-size: 60px;
    color: lightseagreen;
}
svg {
  max-width: 650px;
  max-height: 850px;
}
.topnav {
    background: linear-gradient(to bottom, 
        rgba(32, 32, 32, 1), /* 1 = fully opaque */
        rgba(32, 32, 32, 0.97)  /* 0 = fully transparent */
    );
    display: flex;
    justify-content: space-between; /* Pushes logo left, nav right */
    align-items:center;
    position:fixed; /* Keeps navbar at top */
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensures it stays above other content */
    /*opacity: 0.97;*/
    height: fit-content;
    padding: 20px 20px 10px 20px;
    border: 1px solid #202020;
    box-shadow: 5px 20px 20px 5px rgba(0, 0, 0, 0.5);
}
.headings {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0px;
    gap: 25px; /* Space between headings */
    margin-right: 3%;
    
}
/* Links */
.headings a {
    float: right;
    color: antiquewhite;
    text-align: center;
    padding: 0px 10px 0px 10px;
    text-decoration: none;
    font-size: 17px;
    white-space: nowrap;
}
/* Hover Effects */
.headings a:hover {
    background-color: #7a7a7a;
    color: black;
    border-radius: 5px;
}
.headings .list-item {
    display: inline-block;
    padding: 5px;
}
/* hamburger menu */
.menu {
    display: none;
}
.menu-line{
    width: 25px;
    height: 4px;
    background-color: antiquewhite;
    margin-bottom: 4px;
    margin-top: 4px;
    border-radius: 30px;
}
.bird {
    text-align: center;
}
.container{
    color: antiquewhite;
    border: 5px solid #42434a;
    border-radius: 7px;
    margin-bottom: 20px;
    width: 100%;
    padding: 15px;
    white-space: normal;
    overflow-wrap: anywhere; /* or 'break-word' */
    align-items: center;

}
.subcontainer{
    margin-bottom: 20px;
    width: 100%;
    padding: 30px;
    text-align: left;
    align-items: center;
}
.footlocker{
    width: 100%;
    padding: 5px;
    text-align: left;
    align-items: center;
}
.container_solid {
    background-color: #42434a;
    color: antiquewhite;
    border-radius: 10px;
    margin-left: 10%;
    margin-right: 10%;
    padding: 30px;
    border: #34353a;
    border-width: 4px;
    box-shadow: 5px 20px 20px 5px rgba(0, 0, 0, 0.5);
    width: 80%;
    align-items: center;
    white-space: normal;
    overflow-wrap: anywhere; /* or 'break-word' */
}
.container_solid, p, a, svg {
    text-align: left;
}
.center {
    text-align: center;
}
.left {
    text-align: left;
}
.margin-left {
    margin-left: 30px;
    margin-right: 20px;
}
.left {
    position: absolute;
    left: 50px;
}
.button{
    border: 5px solid burlywood;
    border-radius: 0.5em;
    padding: min(0.5em, 5%);
    background-color: #11121a;
    color: white;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    margin: 5px;
    line-height: 50px;
    white-space: nowrap;
}
.footer{
    opacity: 0.5;
    border-top: 0.2px solid burlywood;
    padding-top: 10px;
    display: flex;
    align-items:top;
    width: 100%;
    color: antiquewhite;
    gap: 10px;
    text-decoration: none;
    list-style: none;
}
.footer-lists li, a, ul {
    text-decoration: none;
    list-style: none;
    color: antiquewhite;
    font-size: small;

}
.bird {
    opacity: 0.6;
    margin: 20px 50px 50px 0px;
}
.copy {
    text-align: center;
    color: burlywood;
    font-size: small;
}
.red-button {
    background-color:rgb(122, 20, 20); 
    text-decoration: none; 
    color: black; 
}
.blk-button {
    text-decoration: none; 
}
.font-25 {
    font-size: 25px;
}

.about { /* align about_tech logos in boxes */
    text-decoration: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Creates 3 equal-width columns */
    grid-template-rows: repeat(2, 180px);   /* Creates 3 rows, each 100px tall */
    gap: 10px; /* Adds space between grid cells */
    text-align: center;
    color: antiquewhite;
}
.about:hover {
    color: #9b2103;
}
.limit {
  max-width: 650px;
  max-height: 850px;
}

/* for mobiles and tablets */

@media all and (max-width: 990px) {

    .topnav {
        background-color: #202020;
        height: 100px;
        background: linear-gradient(to bottom, 
            rgba(32, 32, 32, 1), /* 1 = fully opaque */
            rgba(32, 32, 32, 0.97)  /* 0 = fully transparent */
        );
        box-shadow: 5px 20px 20px 5px rgba(0, 0, 0, 0.5);
    }
    .topnav.active {
        height: 500px;
    }
    .headings {
        display: none;
    } 
    
    .headings.active {
        display: flex;
        flex-direction: column;
        position: relative;
        top: 40px;
        width: 50%;
        border-top: 4px solid burlywood;
        padding: 30px;
        background-color: #302e2e;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .headings .list-item {
        border-bottom: 1px solid antiquewhite;
    }
    .menu {
        display: block;
        position: absolute;
        right: 35px;
        top: 25px;
    }
    .menu.active div:nth-child(1) {
        transform: translate(-50%, -50%) rotate(45deg);
        position:absolute;
        top: 10px;
        right: -15px;
        width: 30px;
    }
    .menu.active div:nth-child(2) {
        opacity: 0;
    }
    .menu.active div:nth-child(3) {
        transform: translate(-50%, 50%) rotate(-45deg);
        position:absolute;
        top: 6.2px;
        right: -15px;
        width: 30px;
    }
    .logo {
        position: absolute;
        left: 20px;
        top: 20px;
    }
    .min-500 {
        min-width: 300px;
    }
    .footer{
        flex-direction: column;
        flex-wrap: wrap;
        gap: 1px;
        text-align: center;

    }
    .about { /* align about_tech logos in boxes */
        grid-template-columns: repeat(3, 1fr); /* Creates 3 equal-width columns */
        grid-template-rows: repeat(3, 180px);   /* Creates 3 rows, each 100px tall */
    }
}

@media all and (max-width: 480px) {

    .about { /* align about_tech logos in boxes */
        grid-template-columns: repeat(2, 1fr); /* Creates 3 equal-width columns */
        grid-template-rows: repeat(4, 180px);   /* Creates 3 rows, each 100px tall */
    }
}

@media screen and (max-width: 650px) and (orientation: landscape) {
    .topnav {
        position: relative;
    }
}
/*
    body {
        width: 10%;
    }
    h3 {
        width: 150%;
        margin-left: 20px;
    }
    .container_solid{
        width: 200%;
        margin: 0;

    }
    .container{
        width: 200%;
    }

}*/