 @import url('https://fonts.googleapis.com/css2?family=Mansalva&family=Martian+Mono:wght@300&display=swap');

/*Declare Color Variables */

:root{
    --color1: white;
    --color2: yellow;
    --color3: green;
    --age-check-bg: black;
    --age-check-text: white;
}

html, body{
    margin: 0;
    padding: 0;
    font-family: 'Martian Mono', monospace;
}

body{
    background: rgb(46,79,149);
    background: linear-gradient(160deg, rgba(46,79,149,1) 15%, rgba(92,77,125,1) 51%, rgba(160,26,88,1) 100%);
    overflow-x: hidden;
}

a{
    text-decoration: none;
    color: black;
}

.adultArea{
    height: auto;
    width: 100vw;
}

.adultPrompt{
    height: 100vh;
    width: 100vw;
    background-color: var(--age-check-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.promptBox{
    width: 70%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.promptText{
    text-align: center;
    font-size: 24px;
    color: var(--age-check-text);
    line-height: 1.5;
}

.prompt-button{
    color: black;
    background-color: white;
    width: 250px;
    height: 60px;
    margin-top: 80px;
    border-radius: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prompt-button:hover{
    background-color: #DBDBDB;
    cursor: grab;
}

.main{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 35px;
}

.profilePic{
    margin-top: 35px;
    margin-bottom: 35px;
}

.circlePic{
    border-radius: 100px;
    width: 200px;
    border: 4px white solid;
}

.intro{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.introText{
    text-align: center;
    font-size: 22px;
    line-height: 1.5;
}


.cta{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 60px;
    background-color: #5278CA;
    border-radius: 30px;
    text-align: center;
    margin-top: 25px;
    box-shadow: 5px 5px #355AAC;
}

.cta:hover{
    background-color: #3A63BB;
    box-shadow: none;
}

.cta2{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 60px;
    background-color: #D66EA9;
    border-radius: 30px;
    text-align: center;
    margin-top: 25px;
    box-shadow: 5px 5px #C63888;
}

.cta2:hover{
    background-color: #C63888;
    box-shadow: none;
}

.photoGrid{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    filter: saturate(0.7);
    justify-content: center;
}

.gridPic{
    width: 26%;
    border-radius: 6px;
    margin: 5px;
    filter: blur(2px);
    visibility: hidden; 
}

.gridPic:hover{
    filter:blur(0px);
    filter: saturate(1.1);
}

.fadeIn{
    animation: fadeIn 1.5s;
}

@keyframes fadeIn {
    from{
        opacity: 0;
    }

    to{
        opacity: 1;
    }
    
}

@media screen and (max-width: 1000px){
    
    .gridPic{
        width: 40%;
    }

    #photo-grid > img:nth-child(9){
        display: none;
    }

    .introText{
        min-width: 350px;
        font-size: 18px;
    }

    .circlePic{
        width: 175px;
    }
}