@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

:root {
    --header-color: #A4AFC4;
    --hover-color: #CBD1DD;
    --col-sun: #933800;
    --col-sun2: #fefaee;
    --col-sun3: #fdeea4;
    --col-sun4: ##0B0000;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
}

html {
    font-size: 62.5%;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;

}

body {
    font-family: 'Orbitron', sans-serif;
    font-weight: 400;
    line-height: 1rem;
    color: #333;
    min-width: 375px;
    background-color: black;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--header-color)
}

a:hover {
    color: var(--hover-color);
};

.global-container {
    width: 100%;
    height: 100vh;
}

/******************************/
/* SECTION 1 */
/******************************/

/* .relative-container-1 {
    position: relative;
} */

.background-image {
    object-fit: cover; /* REMEMBER */
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
    /* rotate: 180deg; */
}

.container-section-1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* border: solid 1px white; */
    /* grid-template-rows: 1fr 1fr 1fr; */
}

.landingPageHeader {
    grid-area: 1 / 2; /* row / column */
    color: var(--col-sun);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 2.5rem;
    /* border: solid 1px white; */
}

.landingPageHeaderText {
    margin-top: 2rem;
    font-size: 5rem;
    letter-spacing: 1rem;
}
@media (width < 520px) {
    .landingPageHeaderText {
        font-size: 4rem;
    }
}
@media (width < 400px) {
    .landingPageHeaderText {
        font-size: 3rem;
    }
}


.weather-info {
    grid-area: 2 / 2;
}

.iframe-video {
    border-radius: 10px;
    width: 100%;
    /* height: 100%; */
    aspect-ratio: 3 / 1.6;
}

.sub-section-1-ul, #time, #temp, #wind {
    font-size: 1.5rem;
    line-height: 3rem;
    color: var(--col-sun3);
    margin-top: 1rem;
    text-align: justify;
    letter-spacing: .3rem;
    list-style: none;
}

.sub-section-1-p {
    margin-top: 2rem;
    font-size: 1.5rem;
    line-height: 3rem;
    color: #A4AFC4;
    text-align: justify;
    letter-spacing: .3rem;
    list-style: none;
}

.weatherContainer {
    display: flex;
    justify-content: space-between;
    margin-top: 30rem;
}

#time::before, #temp::before, #wind::before {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 10px;
    background-color: var(--col-sun3);
    border-radius: 50%;
    vertical-align: middle;
}

#html::before, #css::before, #php::before, #js::before, #python::before, #react::before, #sql::before {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    margin-right: 10px;
    border-radius: 50%;
    vertical-align: middle;
}

#time::before {
    content: url(../img/time.svg);
}

#temp::before {
    content: url(../img/thermometer.svg);
}

#wind::before {
    content: url(../img/wind.svg);
}

/* .sub-section-1-ul a {
    text-decoration: none;
    color: rgb(255, 85, 0);
} */

.sub-section-1-icon-container {
    grid-area: 3 / 2;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.sub-section-1-div-3-svg {
    width: 45px;
    height: 45px;
    color: var(--col-sun);
}

.sub-section-1-div-3-svg:hover {
    color: var(--col-sun2);
    transform: scale(110%)
}
.sub-section-1-div-3-svg:active {
    color: #bbb;
    transform: scale(100%);
}

/* ---------------- */
/* SECTION TWO      */
/* ---------------- */

#section-two {
    margin-top: 25rem;
    height:100vh;
    scroll-snap-align: top;
}

.title {
    padding-top: 50px;
    text-align: center;
    height: 100px;
    font-size: 4em;
    
}

.note {
    text-align: center;
}

.container {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap:5rem;
    /* grid-auto-rows: minmax(100px, auto); */
    padding-top: 5em;
    justify-content: center;
    color: #A4AFC4;
    font-size: 1.5rem;
    line-height: 3rem;
    
}



.box {
    /* grid-row: 1; */
    width: 60rem;
    height: 50rem;
    background-color: #0d162a;
    border-radius: 10px;
    box-shadow: 0px 5px 10px #273865;
    padding: 3rem;
}
@media (width < 500px) {
    .box {
        width: 50rem;
        height: auto;
    };
};

.box-a {
    grid-column: 1;
    grid-row: 1
}

/* .box-b {
    grid-column: 2 / 3;

} */

.box-c {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 5rem;
}

.playerAudio {
    margin-top: 2rem;
    height: 18px;
    width: 175px;
    /* background-color: black; */
    font-size: 1.2rem;
}

/* Code Window */

.code1 {
    margin-top: 5rem;
}
.code2 {
    margin-left: 3rem;
}



@container (width < 520px) {
    .landingPageHeaderText {
        font-size: 9rem;
        color: white;
    }
}

