
@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans+Condensed:wght@500&display=swap');
*{
    margin:0;
    padding:0;
    color:white;}
#page-title{
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size:30px;
}
body{
    display: flex;
    flex-direction: column;
    font-family: 'Sofia Sans Condensed', sans-serif;
    background: #748cab;
}
header{

    display:flex;
    justify-content: left;
    align-items: center;
    background-color:#3e5c76;
    height:75px;
    width:100%;

}

#intro{ 
        font-size: 33px;
    max-width: 800px;
    width: 90%;
    margin: auto;
    padding-top: 35px;
    
}

#pictures{
    width:100%;
    height:100%;
    display:flex;
    flex-direction: column;
    align-items: center;
}
.picture{
    /*display:flex;*/
    
    margin-top:150px;
    padding:0px 20px;
    /*height:100vh;*/
    max-width:1000px;
}

.picture-img{
    width:100%;
    max-height:100vh;
    max-width:500px;
    margin:10px;
    box-shadow: 0px 3px 10px #1d2d44 ;
}
@media(max-width:700px){
    .picture{
        display:block;
        height:fit-content;
    }
    .picture-img{
        max-width:300px;

    }
}
.desc{
    text-wrap:wrap;
    margin-bottom:10px;
}
.info{
    margin:10px;
    /*display:block;*/
}
.extra-info{
    display:block
}
.cost{
    display:inline;
    justify-self:right;
    font-size:20px;
}
.contact-me{
    text-wrap:nowrap;
    margin:7px;
    font-size:20px;
    background-color:#3e5c76;
    text-decoration: none;
    color:white;
    padding:0 20px;
    /* box-shadow: 0px 3px 30px #1d2d44 ; */
    border:solid 0px;
    border-radius:100px;
}
.name{
    display:flex;
    justify-content:center;
    font-size: 25px;
}

#zoomer{
    display:none;
    position:fixed;
    justify-content: center;
    align-items: center;
    left:0;
    top:0;
    background: rgba(0, 0, 0, 0.5);
    
    width:100vw;
    height:100vh;
}
.zoom-controller{
    color:black;
    font-size: 20px;
    background: none;
    border:none;
}
#zoomer-controller{

    position: absolute;
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#zoomer-img{
    opacity:1; 
    max-width: 90%;
    max-height: 90%;
    height: 1000px;
}
@media(max-width:500px){
    #zoomer-img{
        max-width: 350px;
        height: auto;
    }
}
#quit-zoomer{
    position:absolute;
    right:30px;
    top:10px;
    border:none;
    background: none;
    z-index: 10;
}
#quit-zoomer img{
    color:white;
    width:50px
}

#logo{
        width: 40px;
    padding-left: 30px;
    padding-right: 30px;
}

#controls{
    display: flex;
}