
* {box-sizing: border-box;}
html, body {
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode'; color: rgba(255, 255, 255, 0.932);
    background-color:#688fa5;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    align-content: center;
    gap: 20px;
    flex-wrap: wrap;
    background-image: url(images/tlo1.png);
    background-repeat: repeat;
    background-position: center center;
    background-size: 25%;

}
nav li {
    display: inline-block;
    margin: auto;
    background-color: rgb(44, 44, 44);
    margin-top: 15px;
    margin-bottom: 10px
  }

nav{
    width: 100%;
    background: none;
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
    justify-items: center;
    min-width: 0;
    flex-grow: 1;
    margin: 0;
    bottom: 0;
    padding: 10px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode'; color: rgba(255, 255, 255, 0.932);
    text-align: center;
    border-bottom: #ffffff solid;
    background-repeat: repeat;
    background-position: center center;
    background-size: 25%;
    background-color: rgb(44, 44, 44);
    background-image: url(images/tlo2.png);
    word-spacing: 10px;
}

nav a:hover{
    color: rgb(208, 199, 211);
    background-color:#688fa5;
}

nav a{
    text-decoration: none;
    padding: 10px;
    font-size: 20px;
    text-align: center;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.932);
    color: black;
}
#profile img{
    border-radius: 50%;
    width: 400px;
    height: 400px;   
    z-index: 1;
    position: relative;
    background-color: #ffffff;
    background-image: url(images/base.png);
}

#profile img:hover{
    background-image: url(images/animatedobrys.gif);
}
#About p{
    color: ##8B8644;
}

#left {
    border-radius: 25px;
    opacity: 0.5px;
    width: 100%;
    padding: 10px;
    flex-grow: 1;
    flex-direction: column;
    display: flex;
    align-items: center;
    align-content: center;
    margin-top: 50px;
}


#About {
    text-align: center;
    border-radius: 5px;
    background-color: rgba(44, 44, 44, 0.5);
    padding: 10px;
    margin-bottom: 20px;
    width: 80%;
    min-width: 60%;
    margin-top: 50px;

}

header {
    position: left;
}

footer{
    font-size: small;
}


hr {
    
    border: dtted 2px #ffffff; 
}

.wayfinding img {
        width: 100%;
        overflow: hidden;
        object-fit: scale-down;
        margin: auto;
        height: 100%;
}

.model {
    width: 100%;
    max-height: 560px;
    min-height: 560px;
  }
  
.model h2{
    font-size: 25px;
}

  model-viewer {
    width: 100%;
    height: 560px;
    background-color: transparent;
    margin: auto;
  }

  .portfolio{
    opacity: 0.5px;
    border-radius: 5px;
    width: 50%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;

  }

.portfolio iframe{
    min-width: 300px;
    max-width: 100%;
    min-height: 560px;
    max-height: 100%;
}

.video{
    margin-top: 10px;
    background-color: rgba(44, 44, 44, 0.863);
    opacity: 0.5px;
    border-radius: 5px;
    top: 50px;
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    margin-top: 50px;

}

.wayfinding{
    margin-top: 50px;
    background-color: rgba(44, 44, 44, 0.863);
    opacity: 0.5px;
    border-radius: 5px;
    top: 50px;
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    text-align: center;
    margin-top: 50px;


}


.portfolio iframe{
    width: 800px;
    height: 560px;
}


#contact {
    text-align: left;
    background-color: rgb(44, 44, 44);
    padding: 0;
    bottom: 0;
    flex-grow: 1;
    flex-direction: row;
    width: 100%;
    margin-top: 50px;
}

#contact li {
    display: inline-block;
    padding: 10px;
}

@media screen and (max-width: 600px){
    .portfolio iframe{
        width: 200px;
        height: 560px;
    }
    .portfolio{
    width: 100%
}
    model-viewer{ 
        width: 300px;
    }
    .banner{
        background-image: none;
    }
    .portfolio h2{
        font-size: 25px;
  }
}

.collapsible {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active, .collapsible:hover {
    background-color: #ccc;
  }
  
  /* Style the collapsible content. Note: hidden by default */
  .content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
  }