/* css reset rule */

* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

body {
    font-family: 'Contrail One';
}

.menu {
    position: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #134;
    width: 100%;
    border-bottom: 4px solid rgb(43, 110, 133);
}

.menu a {
    font-size: 34px;
    padding: 21px 0px;
    color: rgba(255, 255, 255, .8);
    font-weight: 700;
    text-decoration: none;
}

#menuanchors {
    width: 100%;
    text-align: center;
}

#menuanchors:hover {
    background-color: rgb(43, 110, 133);
    transition: background-color 300ms linear;
    color: rgba(255, 255, 100, 0.8);
}

/* All Sections */
section {
    display: inline-block;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(90deg, #256, #134);
    border-bottom: 20px solid #134;
}

content {
    position: relative;
}

#welcomeheader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-size: 8em;
    color: #00000050;
    /* border: 2px solid red; */
    text-align: center;
    transition: 300ms;
}

#welcomeheader:hover {
    color: rgba(255, 255, 100, 0.8);
    text-shadow: 0 0 20px #134,
                 0 0 40px #134;
    letter-spacing: 4px;
    margin-top: 20px;
}

/* took out gallery header but can keep code */
#galleryheader, .material-symbols-outlined  {
    position: absolute;
    padding: 10px;
    top: 3775px; left: 800px;
    justify-content: center;
    align-self: center;
    margin: auto;
    font-size: 6em;
    color: #00000050;
}

.material-symbols-outlined {
    top: 1000px; left: 900px;
    font-size: 12em;
}

figure.jake-photo {
    border: 4px solid yellow;
    width: 320px; height: 320px;
    background-image: url(../images/mewithtoby.jpg);
    background-size: cover;
    border-radius: 50%;
    margin-right: 20px;
}

.img-gallery {
    width: 70%;
    display: grid;
    grid-template-columns: repeat(auto-fit,  minmax(250px, 1fr));
    grid-gap: 30px;
    margin: 200px auto 50px;
    padding-top: 40px
}

.img-gallery img {
    width: 300px; height: 250px;
    cursor: pointer;
    transition: .3s; /* looks smoother to me rather than adding a transition in the hover declaration */
}

.img-gallery img:hover {
    transform: scale(0.8) rotate(-15deg);
    border-radius: 20px;
    box-shadow: 0 35px 75px rgba(255, 255, 100, 0.4); /* could make this not yellow and it would also look clean */
}

#webpages {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(auto-fit,  minmax(350px, 1fr));
    grid-gap: 20px;
    margin: 150px auto 50px; /* top right bottom left */
    text-align: center;
}

#webpages a {
    font-size: 3em;
    font-weight: bold;
    color: #BED8D4;
    text-decoration: none;
    display: block;
    color: #00000050;
    padding: 20px;
}

#webpages a{
    transition: 300ms;
}

#webpages a:hover {
    color: rgba(255, 255, 100, 0.8);
    text-shadow: 0 0 20px #134,
                 0 0 40px #134;
    letter-spacing: 8px;
    margin-top: 10px;

}

.full-img {
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    position: fixed;
    top: 0; left: 0;
    display: none; /* adding flex in on click */
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.full-img img {
    width: 90%;
    max-width: 500px;
}

.full-img span {
    position: absolute;
    top: 5%; right: 5%;
    font-size: 30px;
    color: white;
    font-family: sans-serif;
    cursor: pointer;
}

p {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-size: 3em;
    color: #00000050;
    /* border: 2px solid red; */
    text-align: center;
    transition: 300ms;  
    margin-left: 200px;
    margin-right: 200px;
    margin-bottom: 0px;
}

p:hover {
    color: rgba(255, 255, 100, 0.8);
    text-shadow: 0 0 20px #134,
                 0 0 40px #134;
    margin-top: 20px;
    letter-spacing: 1px;;
}



