@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@300;800&family=Montserrat:wght@500&display=swap');
html {
    background-color: #ccc;
}
.container1 {
    display:grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows:100vh;
    padding-left: 50px;
}
.section {
    grid-row-start:1;
    grid-column-start:1;
    position: relative;
    top: 250px;
}
.selfie {
    height: 95%;
    padding-left: 150px;
}
.landPara {
    font-family: "Merriweather sans", sans-serif;
    font-weight: 300;
    text-indent: 1em;
    line-height: 1.2em;
    padding-bottom: 50px;
    color: white;
}
.landH1 {
    font-family: "Merriweather sans", sans-serif;
    font-weight: 800;
    /* letter-spacing: 0.2em; */
    font-size:xx-large;
    text-align: center;
    color: white;
}
.infoCards {
    grid-column: 1/3;
    display: flex;
    height: 50vh;
    justify-content: space-evenly;

}
.t1, .t2, .t3 {
    background-color: #0088a8;
    width: 33vh;
    font-family: "Merriweather sans", sans-serif;
    font-weight: 800;
    text-align: center;
    padding-top: 30px;
}
.t1:hover, .t2:hover, .t3:hover {
    cursor: pointer;
    opacity:75%
}
/* styles.css */
.container2 {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

h1 {
    text-align: center;
    color: #333;
}

.form-group {
    margin: 10px 0;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}


textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button:hover {
    background-color: #0056b3;
}
section#projects {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.project {
    border-radius: 5px;
    margin: 20px 0;
    padding: 20px;
}
.ss, .woman, .smoothie {
    height: 50%;
}
.skills {
    background-color: #282c36;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-family: "Merriweather sans", sans-serif;
    font-weight: 800;
    position: relative;
    left: 50%;
  }
  h2 {
    font-family: "Merriweather sans", sans-serif;
    font-weight: 800;
    text-align: center;
  }
  
  .section-title {
    font-size: 24px;
    color: #61dafb;
  }
  
  .skills-list {
    margin-top: 20px;
  }
  
  .skill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .skill-name {
    font-weight: bold;
    color: #fff;
    font-size: 18px;
  }
  
  .skill-rating {
    font-size: 20px;
    color: #f7d52e;
  }
  
  .star {
    color: #f7d52e;
  }