html, body{
    width: 100%;
    height: 100%;
    font-size:18px;
}

body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

h1 {
  font-size: 12pt;
  display: inline;
}


#container {
    width: 80%;
    height: 100%;
    margin: 0 auto;
}

#containerblack {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-color: black;
}

#sampleimg {
    position: relative;
    width: 50%;
    height: auto;
    margin: 0 auto;
}

#logobar {
    position: relative;
    display: flex;
    width: 100%;
    height: 15%;
    background-color: rgb(0,40,0);
    justify-content: center;
}

#logopages {
    width: 280px;
}

/* #logopages img {
    width: 100%;
    height: auto;
} */

#userbar {
    position: relative;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: rgb(0,90,0);
    color: rgb(255,255,255);
    text-align: center;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 10px;
}

#namebar {
    position: relative;
    text-align: center;
    font-weight: 700;
}

#menubar {
    position: relative;
    float: right;
    font-weight: 300;
    margin: 0;
}

#menubar ul {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}

#menubar li {
    display: inline-block;
    width:auto;
    padding: 0 20px;
    height: 5vh;
    line-height: 5vh;
}

#infobar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#infobar img {
    width: 100px;
}

.flecha {
    position: relative;
    width: 100px;
    height: auto;
}

.infobartext {
    font-size: 1em;
    font-weight: 600;
    color: rgb(0,40,0);
    text-align: center;
}

#mypanoviewer {
    position: relative;
    height:70%;
    width: 100%;
    margin: 0 auto 20px auto;
}

.userinfo {
    position: relative;
    width: 80vw;
    margin: 0 auto 10px auto;
    height: auto;
    font-size: calc(1rem+0.5vw);
}

.testimonio {
    position: relative;
    width: 50vw;
    margin: 0 auto 15px auto;
    padding: 10px;
    height: auto;
    border-left: 1px solid rgb(0,0,0);
    border-right: 1px solid rgb(0,0,0);
    font-style: italic;
    background-color: rgb(192,255,192);
    font-size: calc(1rem+0.5vw);
}

.resalta {
    position: relative;
    width: 50vw;
    margin: 20px auto;
    padding: 25px;
    height: auto;
    border-bottom: double 5px rgb(0,48,0);
    border-top: double 5px rgb(0,48,0);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 3.5vw;;
    text-align: center;
}

.center {
    text-align: center;
    font-weight: 600;
}

#notice,
#notice A:link,
#notice A:visited,
#notice A:active,
#notice A:hover
{
  font-size: 7pt;
  color: rgb(128,128,128);
  text-align: right;
  padding-top: 5px;
  text-decoration: none;
}

#notice A:hover
{
  text-decoration: underline;
}

.hspace10 {
    position: relative;
    width: 100%;
    clear: both;
    height: 20px;
}

#whats {
    position: relative;
    width: 300px;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
    font-weight: 600;
    font-size: 1em;
    background-color: rgb(37,211,102);
    border-radius: 8px;
    border: solid 2px rgb(0,48,0);
}

#whats a {
    text-decoration: none;
    color: rgb(0,0,0);
}

.credit {
    font-size: .8rem;
    text-align: right;
    font-style: italic;
}

.standout {
    font-weight: 600;
}

#mingal {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.volver {
    position: relative;
    margin: 10px auto;
    width: 30%;
    height: 40px;
    line-height: 40px;
    font-weight: 600;
    color: rgb(255,255,255);
    background-color: rgb(0,48,0);
    text-align: center;
    border-radius: 10px;
}

.volver a {
    text-decoration: none;
    color: rgb(255,255,255);
}volver

.singleimg {
    width: 40%;
    margin: 0 auto;
    height: auto;
}

@media only screen
    and (max-width: 480px) {
        
        #container {
            width: 90%;
        }
        
        #userbar {
            font-size: 28px;
        }
        
        #namebar {
            float: none;
            text-align: center;
        }
        
        .userinfo {
            width: 100%;
        }
        
        .testimonio {
            width: 80vw;
        }
        
        .resalta {
            width: 80%;
            font-size: 5vw;
        }
        
        #mingal {
            grid-template-columns: 1fr;
        }
        
        .singleimg {
            width: 80%;
        }
        
}