html {
    overflow-y: scroll;
}

body{
    font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #d7e6ee;
    overflow-x: hidden;
    color: #264653;
    font-size: 14px;
    min-height:100vh;
    height: 100%;
    position: relative;
    padding-bottom: 100px;
    cursor: pointer;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                            supported by Chrome, Edge, Opera and Firefox */
}

#clouds{
    position:absolute;
    width: 120%;
    left: -10%;
    z-index: -1;
    transition: all .25s ease-out;
}

#mtns{
    position: absolute;
    width: 120%;
    left: -10%;
    bottom: 0px;
    z-index: 2;
    margin-right: 200px;
    transition: all .25s ease-out;
}

h1{
    font-size: 6em;
    font-weight: lighter;
}

h2{
    font-size: 3em;
    font-weight: lighter;
}

h3{
    font-size: 2em;
    font-weight: bolder;
}

p{
    font-size: 1.5em;
}

li{
    font-size: 1.5em;
}

.container{
    width: 100%;
}

.underline{
    text-decoration-line: underline;
    text-decoration-color: #264653;
    text-decoration-thickness: 1px;
}

.click{
    cursor: pointer;
}

.click:hover{
    text-decoration-line: underline;
    text-decoration-color: #264653;
    text-decoration-thickness: 1px;
}

#udeca:active{
    cursor: pointer;
}


#name{
    margin-top: 15%;
    padding-top: 25px;
    transition: all .5s ease-out;
}

.info-buttons{
    padding: 0% 40%;
    transition: all .5s ease-out;
}

#nav-bar{
    display:none;
}

.icon{
    width: 3em;
    opacity: 0.90;
}

.icon:hover{
    opacity: 0.75;
}

.tile{
    position: relative;
    z-index: 1;
    background-color: #F8FBFC;
    border-radius: 25px;
    border: 4px white solid;
    display: none;
    padding: 1% 2%;
    margin: 6em 6em;
    -webkit-touch-callout: text; /* iOS Safari */
    -webkit-user-select: text; /* Safari */
    -khtml-user-select: text; /* Konqueror HTML */
    -moz-user-select: text; /* Old versions of Firefox */
    -ms-user-select: text; /* Internet Explorer/Edge */
    user-select: text; /* Non-prefixed version, currently
                            supported by Chrome, Edge, Opera and Firefox */
}



@media only screen and (max-width: 600px) {
    

    a{
        word-break: break-all;
    }

    .icon{
        width: 4em;
        margin-bottom: 10px;
    }

    .info-buttons{
        padding: 0 0;
    }

    .tile {
        margin: 1em 1em;
    }

    #clouds{
        width: 240%;
        left: -20%;
    }

    #mtns{
        width: 240%;
        left: -20%;
    }

    #name{
        margin-top: 0;
    }

    #nav-bar{
        display:block;
    }
}


