@keyframes fadein {
    from{
        transform: translateY(3rem);
        opacity:0
    }to{
        transform: translateY(0%);
        opacity:1
    }
}
@keyframes slidein {
    from{
        transform: translateY(3rem);
    }to{
        transform: translateY(0%);
    }
}

@font-face{
    font-family: handlee;
    src:url('./assets/handlee.ttf')
}

body{
    background-color: hsl(46, 53%, 9%);
    color:white;
    display:flex;
    align-items: center;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    padding:0;
    margin:0;
    background: rgb(14,1,61);
    background: radial-gradient(circle, rgba(14,1,61,1) 0%, rgba(102,45,145,1) 100%);
    overflow-x: hidden;
    overflow-y: auto;
    width:100vw;
    min-height: 100vh;
    position: relative;
}

html{
    overflow-x: hidden;
}

.container{
    visibility: hidden;
    border-style: solid;
    border-width:1rem;
    background-color: rgb(17, 93, 192);
    border-color: hsl(45, 55%, 13%);
    margin:0; 
    margin-top: 2rem;
    height:100%;
    flex:1;
    padding: 4rem;
    padding-bottom: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    background: rgb(255,185,53);
    background: linear-gradient(0deg, rgba(255,185,53,1) 0%, rgba(0,115,200,1) 54%, rgba(0,54,94,1) 100%);
    z-index: 999;
    
}

h1{
    font-weight: bold;
    font-size: 36pt;
    margin-top: 2rem;
    margin-bottom: 0px;
}

h2{
    font-weight: bold;
    font-size: 18pt;
    margin-bottom: 9px;
    text-transform: uppercase;
    color: rgb(29, 29, 29);
    text-align: center;
}

p{
    /*text-transform: uppercase;*/
    font-size: 1rem;
    text-align: center;
    margin:0px;
    margin-bottom: 24px;
    color: rgb(63, 63, 63);
}

#square-container{
    width:100%;
    position: relative;
    height:100px;
}

#square{
    position:absolute;
    left:50%;
    width:50px;
    height:50px;
    background-color: white;
}

#tree{
    position: fixed;
    bottom:0;
    left:30%;
    height:40%;
    z-index: 2;
    -webkit-transition: all 1s;
    transition: all 1s;
}

#mountains{
    position: fixed;
    bottom:0;
    left:0;
    width:100%;
    z-index: 1;
    filter: saturate(1) brightness(1) blur(3px);
    -webkit-transition: all 1.5s;
    transition: all 1.5s;
}

.btns{
    margin:0; 
    margin-top: 2rem;
    height:100%;
    flex:1;
    padding: 2rem;
    padding-bottom: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    z-index: 999;
}

.btn{
    width:10rem;
    font-family: handlee;
    font-size: 2rem;
    background-color: rgb(221, 221, 221);
    margin-bottom: 2rem;
    padding:1rem;
    border: 2px black solid;
    color: black;
    display: flex;
    justify-content: center;
}

.btn:hover{
    background-color: rgb(167, 167, 167);
    cursor: pointer;
}

@keyframes cloudmove {
    0%{
        opacity:0;
        transform: translateX(0);
    }10%{
        opacity:1;
    }100%{
        opacity:1;
        transform: translateX(120vw);
    }
}

@-webkit-keyframes cloudmove {
    0%{
        opacity:0;
        transform: translateX(0);
    }30%{
        opacity:1;
    }100%{
        opacity:1;
        transform: translateX(120vw);
    }
}

.cloud{
    position: absolute;
    height:40px;
    animation: cloudmove infinite linear;
    left:-20%;
    filter: blur(1px);
    opacity: 0.5;
    transition: all 3s;
}

.menu-container{
    position:absolute;
    background-color: white;
    border-color: hsl(0, 0%, 47%);
    border-width: 0.5rem;
    border-style: double;
    margin:2rem; 
    padding: 4rem;
    padding-bottom: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    z-index: 999;
    -webkit-transition: all 1s;
    transition: all 1s;
}

.close-btn{
    align-self: flex-end;
    height:2rem;
}

.hidden{
    -webkit-transform: translateY(150%);
    transform: translateY(100%);
    opacity:0;
    z-index: 1;
}

.hidden-rev{
    -webkit-transform: translateY(100%);
    transform: translateY(-100%);
    opacity:0;
}

#home{
    -webkit-transition: all 1s;
    transition: all 1s;
    z-index: 999;
}

.artist-container{
    display: flex;
    margin-bottom: 1rem;
    max-width: 30rem;
}

.artist-container > .info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info > a{
    text-decoration: none;
    color:rgb(2, 105, 105)
}

.info > p{
    margin-bottom: 1rem;
    text-align: left;
}

.artist-container > img{
    margin-right: 1rem;
    width:10rem;
    height:10rem;
    border-radius: 1rem;
}