@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto&display=swap');

* {
    margin:0px; 
    padding:0px;
}

html, body {
    font-family: "Poppins", sans-serif;
    background-color:rgb(5, 5, 24);
    height: 100%;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
}

/* This starts the content of the page, the header and hero*/

.header {
    position:fixed; 
    display: flex;
    justify-content:flex-end;
    align-items: center;
    padding: 15px 20px;
    color: white;
    background-color: #27282b;
    z-index: 999;
    width:100%;
    right: 0px;
}

.links {
    display:flex;
    gap: 40px;
}

a {
    text-decoration: none;
    color:white;
    font-weight:600;
    font-size:18px;
}

.hero-block::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.hero-block {
    display:flex;
    flex-direction: column;
    width: 100%;
    min-height:100vh;
    background-image: url(./images/background.jpg);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.center-hero-content {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items: center;
    color:white;
    flex-grow:1;
    font-size:25px;
}

.center-hero-content h1 {
    font-size: 50px;
    font-weight:700;
}

/* This starts the second section of the page, the about me section */

.about-block {
    display:flex;
    justify-content:space-around;
    align-items: center;
    background-color:#000000;
    padding: 100px;
}

.about-block .self-picture {
    width:400px;
    height:auto;
    border-radius: 500px;
    border: 3px solid white;
}

.about-text {
    display:flex;
    flex-direction:column;
    color:white;
    width:550px;
    height: 400px;
    justify-content:center;
    font-size:16px;
}

.about-text h1 {
    font-size:50px; 
    margin-bottom:5px;
}

.about-text p {
    margin-bottom:15px;
}

.technology {
    display: flex;
    gap: 15px;
  }


.technology img {
    width: 60px;
    height: 60px;
    border-radius: 30%;
    background-color: white;
    padding: 3px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 50px;
}

/* This starts the project section of the webpage.*/

.project-block {
    display:flex;
    flex-direction: column;
    color:white;
    align-items:center;
    padding:250px 100px;
    background-color:#000000;
}

.project-cards {
    display:flex;
    justify-content:space-around;
    width:100%;
    margin:50px;
}

.project {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width:400px;
    height:200px;
    border-style:solid;
    border-color:rgb(255, 255, 255);
    border-radius: 30px;
}

/* This starts the experience portion of my website */

.experience-block, .roles, #rebny-role {
    display:flex;
    flex-direction: column;
}

.experience-block {
    color:white;
    padding: 150px 200px;
    padding-top: 100px;
    background-color:#000000;
}

.experience-block h1 {
    font-size:80px;
    margin-bottom: 30px;
}

.roles h2 {
    font-size:35px;
}

.roles {
    margin-left: 170px;
    gap:50px;
    width: 850px;
    font-weight:lighter;
}

#rebny-role {
    gap:10px;
}

.position {
    color:#d8e7e6
}

.non-tech-role {
    text-decoration: underline;
    font-size: 18px;    
}

.footer {
    display:flex;
    flex-direction:column;
    padding:20px;
    background-color: #2b3332;
    margin-top:auto;
    color:white;
}

.credit {
    text-align:center;
}