/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: white;
  font-family: Verdana;
}
.basic_1 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    margin: auto;
    border: 1px solid white;
    padding: 10px; 
}

.item {
    background-color: gold;
    padding: 20px;
    margin: 5px;
    color: #18191c;
    flex: 1;
    text-align: center;
    border: 3px solid red;
}



.centerbox {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  border: 3px solid red; 
  margin: auto;
  width: 50%;
  padding: 10px;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  flex: 1;
}
.center {
  display: flex;
  justify-content: center;
}
h1 {
  letter-spacing: 2px;
  font-family: math;
  color: #14151c;
}


/* the navigatable header */

.navbar {
  background-color: red;
  padding: 15px 0;
  width: auto;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none; /* just for hte points*/
  display: flex;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.nav-btn {
  color: white;
  font-family: sans-serif;
  font-weight: bold;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 5px;
}



.header-image-box {
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  text-align: center;
  color: white;
  

  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Imgs/GUSTAV_KLIMT_1_MUJERE_BONITA.jpg');
}

.header-image-box-content h1 {
  font-size: 50px;
  margin-bottom: 10px;
  color: white;
  
}

.row {
  display: flex;
}

.column {
  flex: 1;
  padding: 10px; 
}





.container {
    display: flex;
    gap: 20px; 
    justify-content: center;
}

.box {

    padding: 20px;
    border: 1px solid #18191c;
    background-color: lightgray; 
}

.box1 {
    background-color: red;
    width: 10%;
    word-break: break-word;
    container-type: inline-size;
    
}

.box2 {
    background-color: white;
    width: 50%;
    color: #18191c;
}








