

/*choices for linked fonts 
font-family: 'Caveat', cursive;
font-family: 'Henny Penny', cursive;
font-family: 'Orbitron', sans-serif;
font-family: 'Unica One', cursive;*/

/* use the * to include everything / resets so the browser defaults don't put weird spacing around
and the box includes extras inside the total size specified*/

* { padding:0;
    margin:0;
    box-sizing: border-box;
    font-family:'Orbitron', sans-serif;
    letter-spacing: 1.2px;}


    body {
        line-height: 1.3;
        font-family: 'Orbitron', sans-serif;
        align-items: center;
        text-align:center;
    }

    a {
        text-decoration:none;
        color:blue;
    }

    h1 {
        font-size:2rem;
        line-height:1.2;
        margin-top:35px;
        margin-bottom:35px;
        position:relative;
    }

    .photos {
        background:green;
        display:flex;
        flex-wrap:wrap;
        align-content:center;
        align-items: center;
        justify-items:center;
        position:relative;

        margin: 0 auto;
        width:100%;
        border-radius: 20px;
        border: 2px double yellow;
    }

    .photos img {
        position:relative;
        display:flex;
        flex-wrap:wrap;
        flex-direction:row;
        justify-content:space-between;
        width:250px;
        max-width:400px;
        margin-bottom:.5em;
        justify-items:center;
        align-content:center;
        padding:20px;
        box-shadow: 2px 12px 10px rgba(10, 7, 7, 0.8);
    }
   

    .boxes {
        display: flex;
        flex-direction:row;
        flex-wrap:wrap;
        position:relative;
        background: green;
        color:white;
        border-radius: 20px;
        border: 2px double yellow;
        align-content:center;
        justify-content:center;
        align-items:center;
        animation: floating;
        animation-duration: 5s;
        animation-fill-mode: forwards;

    }

    .box {
        gap:12px;
        padding: 20px 13px;
        border: 1px solid yellow;
        position:relative;
        align-content:center;
        justify-content:center;
        border-radius:10px;
        align-items:center;
        background-color:green;
        text-align:center;
        margin:10px;
        margin-top:50px;
        box-shadow: 2px 9px 12px black;
        z-index: 111;
        color:white;
        text-shadow: 1px 1px 3px black;
        transition: 2s;
        

       
       
    }


    .box:hover .box:focus {
        border:4px solid pink;
        transform:scale(.99);

    }
    i {
        position:relative;
        align-items:center;
        align-self:center;
        align-content:center;
        justify-self:center;
        width:100%;
        box-shadow: 12px, 10px, blue);
    }



 
    .btn {
        background:green;
        color: white;
        padding: 4px 0.2rem;
        margin-top:40px;
        text-decoration: none;
        border-radius: 12px;
        font-family: 'Unica One', sans-serif;
        text-align:center;
        min-height: 0.3rem;
        justify-content:center;
        border:white 1px solid;
        display:inline-block;
        opacity:0;
        animation-name:btn;
        animation-duration: 3s;
        animation-delay: 3s;
        animation-fill-mode: forwards;
        transition-property: transform;
        transition-duration: 1s;
    }

    .btn:hover {
        transform:rotateY(360deg);
        background:transparent;
    }

    img {max-width:100%;
        position:relative;
        box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.7)}

     .sandam h1 {
        color:white;
        display:block;
        position:relative;
        padding: 20px 13px;
        border: 1px solid yellow;
        align-content:center;
        justify-content:center;
        border-radius:10px;
        align-items:center;
        text-shadow: 1px 1px 3px black;
        text-align:center;
        margin:10px;
        margin-top:39px;
        box-shadow: 2px 9px 12px black;
        z-index: 111;
        color:white;
        transition: 2s;
       
    }


    .main-nav {
        display:grid;
        gap:5px;
        grid-template-columns: repeat(4, 1fr);
        border: 20px solid rgb(0, 10, 65);
        border-radius: 110% 110% 0rem 0rem;
        background:rgb(33,132,150);
        position:relative;
        z-index: 500;
        margin: 0 auto;
        align-items:center;
    }

    .main-nav ul {
        display: flex;
        letter-spacing: 1.2px;
        gap:5px;
        flex-wrap: wrap;
        position:relative;
        padding:0;
        list-style: none;
        justify-content:center;
        align-content:center;
        align-items:center;
    }

    .logo {
        z-index:5;
    }

    /* navigation */
    .navbar {
    height: 60px;
    color:white;
    background: rgba(0,0,0,0.7); 
    margin: 0 auto;
    padding: 15px;
}


    .navbar .logo {
    font-size: x-large;
}

    .navbar a {
    color: #fff;
    text-decoration: none;
    font-size:18px;
    font-weight: bold;
}

    .navbar ul li a{
    text-decoration:none;
    color: pink;
  
}

    .navbar ul li a:hover {
    background:aqua;
    padding:14px;
    border-radius:10px;
    transition: .75s ease-in-out;
    border-bottom: 5px solid white;
    color:black;
    box-shadow: 0 0 14px rgba(197, 4, 155, 0.479);
}

    .navbar .container {
    display:flex;
    justify-content: space-between;
    align-items:center;
    height: 100%;
}

    .navbar ul {
    display:flex;
}

    .navbar ul li {
    margin: 20px;
    text-decoration:none;
    list-style:none;
}


    .content {
        text-shadow: 1px 1px 3px black;
        color:white;
        position:relative;
        max-width:70%
        z-index:100;
        margin:auto;
        align-items:center;
        justify-content:center;
        place-items:center;

    }

    .content h1 {
        position:relative;
        width:70%;
        margin: 0 auto;
        place-items:center;
    }

    @media (max-width: 450px) {
        .navbar a {font-size:10px;}
    }