html{
    scroll-behavior: smooth;
}
body{
    margin: 0;
    padding: 0;
    font-family: 'Architects Daughter';
    background-color: rgb(29, 28, 28);
    overflow-x: hidden;
}

/* need help ad animation */
.need-help-container{
    width: 100%;
    height: 0;
    background-color: #2f446b;
    position: fixed;
    z-index: 2;
    bottom: 0;
    transition: 500ms;
    display: grid;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 25px;
    visibility: hidden;
    border-top: 2px solid white;
}
.showNeedHelpContainer{
    visibility: visible;
    height: 80px;
    transition: 500ms;
}
.typerwriter-line1{
    position: relative;
    width: 8rem;
    margin: 0 auto;
    border-right: 2px solid rgb(255, 255, 255, 0.75);
    font-size: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
;
}
.go-to-guides-btn{
    position: absolute;
    text-decoration: none;
    color: white;
    background-color: rgb(24, 24, 24);
    border-radius: 5px;
    border: 2px solid white;
    width: 100px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
    visibility: hidden;
    opacity: 0;
}
.go-to-guides-btn:hover{
    border-color: #ffffff80;
    transition: 200ms;
}
.showGoToGuidesBtn{
    opacity: 1;
    visibility: visible;
    transition: 500ms;
}
@keyframes typewriter-line1 {
    from{
        width: 0;
    }
    to{
        width: 8rem;
    }
}
@keyframes typewriter-line2 {
    from{
        width: 0;
    }
    to{
        width: 21.5rem;
    }
}
@keyframes typewriter-remove {
    from{
        width: 8rem;
    }
    to{
        width: 0;
    }
}
@keyframes typewriter-remove2 {
    from{
        width: 21.5rem;
    }
    to{
        width: 0;
    }
}
@keyframes blinkCursor {
    from{
        border-right-color: rgb(255, 255, 255, 0.75);
    }
    to{
        border-right-color: transparent;
    }
}

/*Downloads Area*/

.Grid-Container-Downloads{
    display: grid;
    justify-items: center;
    grid-template-columns: 20% 20% 20% 20% 20%;
    grid-template-rows: auto;
    position: relative;
    top: 100px;
    margin-left: 40px;
    margin-right: 40px;
    grid-row-gap: 40px;
}

.Header-Style{
    width: 100%;
    height: 50px;
    border: 2px solid white;
    grid-column-start: 1;
    grid-column-end: 6;
    background-color: #2f446b;
    color: white;
    font-weight: bolder;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}

.main-download-element{
    background-color: rgb(53, 53, 53);
    width: 300px;
    height: 210px;
    display: grid;
    justify-content: center;
    align-items: flex-end;
    border: 2px solid rgb(73, 73, 73);
    cursor: pointer;
    border-radius: 3px;
    text-decoration: none;
}
.main-download-element:hover{
    border-left: none;
    border-right: none;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    transition: 0.5s;
}
.main-download-element:hover .download-icon-hover{
    display: block;
}
.main-download-element:hover .download-icon{
    display: none;
}

.download-title{
    margin: 10px;
    color: white;
    font-size: 20px;
    background-color: rgb(24, 23, 23);
    padding: 10px;
}

.download-icon, .download-icon-hover{
    height: 80px;
    width: 80px;
    margin: auto;
    position: relative;
    top: 20px;
}
.download-icon-hover{
    display: none;
}


/* bo2 map commands modal */
.modal-container{
    z-index: 4;
    height: 100%;
    width: 100%;
    background-color: #00000080;
    position: fixed;
    top: 0;
    display: grid;
    grid-template-columns: 100%;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}
.modal-close-btn{
    justify-self: center;
    align-self: center;
    color: rgb(199, 42, 42);
    font-size: 50px;
    cursor: pointer;
    background-color: rgb(22, 22, 22);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.521);
}
.modal-close-btn:hover{
    background-color: rgb(36, 36, 36);
}
.modal{
    height: 0;
    width: 1400px;
    background-color: rgb(53, 53, 53);
    border: 2px solid rgb(73, 73, 73);
    border-radius: 3px;
    overflow-y: auto;
    overflow-x: hidden;
    justify-self: center;
    display: grid;
    grid-template-rows: 100px;
    grid-auto-rows: 80px;
    grid-row-gap: 25px;
    visibility: hidden;
    transition: 500ms;
}
.bo2-map-commands{
    color: white;
    padding-left: 40px;
    display: grid;
    grid-template-columns: 50% 50%;
    justify-content: space-between;    
    align-items: center;
    border-bottom: 2px solid rgb(255, 255, 255);
    width: 100%;
}
.bo2-map-commands:last-child{
    border: none;
}
.copyBtn{
    margin-left: 50px;
    margin-right: 50px;
    text-align: center;
    background-color: rgb(88, 88, 216);
    height: 50px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: right;
    box-shadow: 1px 1px 10px rgba(20, 45, 187, 0.8);
    cursor: pointer;
}
.copyBtn:hover{
    background-color: rgb(71, 71, 168);
    transition: 200ms;
}
@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
  }
.openModal{
    height: 90%;
    visibility: visible;
    transition: 500ms;
}



/*Media Queries*/
@media (max-width:1630px) {
    .Grid-Container-Downloads{
        grid-template-columns: 25% 25% 25% 25%;
    }
    .Header-Style{
        grid-column: 1/5;
    }
}

@media (max-width:1470px) {
    .modal{
        width: 90%;
    }
}

@media (max-width:1310px) {
    .Grid-Container-Downloads{
        grid-template-columns: 33.3333%  33.3333%  33.3333%;
    }
    .Header-Style{
        grid-column: 1/4;
    }
}

@media (max-width:1010px) {
    .Grid-Container-Downloads{
        grid-template-columns: 50% 50%;
    }
    .Header-Style{
        grid-column: 1/3;
    }
}

@media (max-width: 925px) {
    .modal{
        grid-auto-rows: 150px;
    }
    .bo2-map-commands{
        grid-template-columns: 100%;
    }
    .copyBtn{
        justify-self: center;
        margin-left: 0;
    }
}

@media (max-width:700px) {
    .Grid-Container-Downloads{
        grid-template-columns: 100%;
    }
    .Header-Style{
        grid-column: 1/2;
    }
}

@media (max-width:460px) { 
    .modal{
        grid-auto-rows: 200px;
    }
}

@media (max-width:420px) { 
    .Header-Style{
        font-size: 20px;   
    }
}

@media (max-width:360px) { 
    .Header-Style{
        font-size: 15px;   
    }
    .main-download-element{
        width: 100%;
    }
    .copyBtn{
        width: 100px;
        justify-self: center;
    }
    .bo2-map-commands{
        font-size: 13px;
    }
}

