/* Reset some default browser styles */
/* body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
} */

html, body {
    font-family: Roboto, sans-serif, Helvetica, Arial;
    background-color: white;
    scroll-behavior: smooth;
}

/* Style the header and navigation */

header {
    background-color: white;
    display: block;
}


.topnav {
    display: flex;
    justify-content: center;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a {
    display: inline-block;
    margin: 10px;
    color: black;
    text-decoration: none;
    font-weight: bold;
    scroll-behavior: smooth;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
  }


.topnav a.active {
    background-color: none;
    color: #466060;
  }


/* Style the images section */

img {
    height: 90%;
}

.images-section {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.images-container {
    display: flex;
    justify-content: space-around;
    height: 500px;
    width: 400px;
    border: 5px solid #fff;
    object-fit: cover;

}



/* Style the body section */

.main {
    display: flex;
}

section {
    display: flex;
}

#home {
    text-align: center;
    padding: 20px;
}

.aboutme {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;

}

.projects {
    display: flex;
    flex-direction: column;
    align-items: center;  
    background-color: #B76D68;
    box-shadow: 0px 2px 10px 0px;
    padding: 20px;
}

* {
    box-sizing: border-box;
  }

.row {
    margin: 8px -16px;
  }

  h1 {
    font-size: 50px;
    word-break: break-all;
  }

/* Add padding BETWEEN each column (if you want) */
.row,
.row > .column {
  padding: 8px;
}

/* Create four equal columns that floats next to each other */
.column {
  float: left;
  width: 25%;
}

/* Clear floats after rows */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.content {
  background-color: white;
  padding: 10px;
}


/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 900px) {
  .column {
    width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}

.herosection {
    display: flex;
    justify-content: end;
    border: 20px;
    padding: 20px;


}

.logo {
    max-width: 30%;
    height: auto;
    border-radius: 50%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
}

/* div {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: white;

} */

.welcome {
    display: flex;
    align-items: center;
    justify-items: center;

}

#primary {
    font-size: 3rem;
    font-weight: bold;
    color: black;
    padding-left: 20px;
    width: 50%;
}

h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: black;
    padding: 20px;

    }

h2 {
    display:inline-block;
    font-size: 2rem;
    font-family: sans-serif, Helvetica, Arial;
    color: black;
    padding: 10px;
    margin: 0px;
}

.para-text {
    font-size: 1.2rem;
    font-family: sans-serif, Helvetica, Arial;
    color: black;
    padding: 10px; 
    margin: 0px;
}

.contact-me {
    display: flex;
}

.contact {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

    padding: 20px;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */ 
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  }
  
  /* Style the submit button with a specific background color etc */
  input[type=submit] {
    background-color: black;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  /* When moving the mouse over the submit button, add a darker green color */
  input[type=submit]:hover {
    background-color: #466060;
  }
  
  /* Add a background color and some padding around the form */
  .container {
    border-radius: 5px;
    background-color: #81a684;
    padding: 20px;
  }

  form {
    background-color: none;
  }

/* Style the footer and social media links */
footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px;
}

.social-media-links {
    list-style: none;
}

.social-media-links li {
    display: inline;
    margin-right: 10px;
}

.social-media-links a {
    text-decoration: none;
    color: white;
}


#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: red; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}
