/* CSS for index.html */
/* *{
    border: 2px solid red;
} */

body{
    margin: 0;
    padding: 0;
    background-color: #a8c3d2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.3px;
    /*putting the font here so that i dont have to put it everywhere,
    this wouldnt work if i use different fonts, but for now it*/
}

h1{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}
.orcatitle{
    text-decoration: none;
    color: black;
}

.orcalogo{
	width: 100%;
	max-width: 100px;
	height: auto;
    padding: 10px;
}
.header{
	display:flex;
    flex-wrap: wrap;
	align-items: center;
	padding: 10px 40px;
    background-color: #e3f4fe;
}
.mainimage{
    position: relative;
    width:100%;
	height: 0;
    padding-top: 50%;
    box-shadow: 0 6px 15px black;
}
.mainimage img{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
	width: 100%;
	height: 100%;
    
}
.imageContainer{
    width: 800px;
    height: auto;
	padding: 40px 20px;
	margin: 0 auto;
}
.row{
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.orcaImage img{
	width: 500px;
    height: auto;
    display: block;
    box-shadow: 0 6px 15px black;
    border-radius: 4px;
}
.para{
    width: 400px;
    letter-spacing: 0.3px;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 30px;
    margin: 20px;
    background-color: #e3f4fe;
}

.buttons{
    display: flex;
    margin-left: auto;
}
.button{
    width: 200px;
    margin: 20px;
    color: black;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: transform 0.3s ease; /*how long the hover animation lasts*/
}
.button:hover{
    /*I want to change the the look of the button without chaging it actual size*/
    transform: scale(1.1);
}

footer{
    display: flex;
    height: 50px;
    justify-content: center;
    align-items: center;
    background-color: #72c0fe;
}

.footercontainer p{
    margin: 0;
    letter-spacing: 0.3px;
    font-size: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* CSS for aboutorcas.html */

h2{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    margin: 40px auto;
}

.sidebysideimages{
    display: flex;
    justify-content: center;
    gap: 100px;
    padding: 50px 20px;
}

.sidebyside-image{
    flex: 1;
    max-width: 200px;
}

.sidebyside-image img{
    display: block;
    border-radius: 2px;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    box-shadow: 0 6px 15px black;
    border-radius: 4px;
}

.sidebyside-image p{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    letter-spacing: 0.3px;
}

/* CSS for habitatandbehavior.html */

.map{
    display: grid;
    grid-template-columns: auto auto;
    gap: 40px;
    padding: 40px;
}

.map-image{
    display: flex;
    gap: 20px;
}

.map-image img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    box-shadow: 0 6px 15px black;
    border-radius: 4px;
}

/* CSS for conservation.html */

.conserrow{
    display: grid;
    grid-template-columns: auto auto;
    gap: 40px;
    padding: 40px;
}

/*2 images in a row on the conservation page*/
.conser-image img{
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 10px;
    box-shadow: 0 6px 15px black;
}

/*for the last image on the conservation page*/
#lastimage{
    width:100%;
    max-width: 900px;
	height: 400px;
    margin: 0 auto 50px;
    overflow: hidden;
    box-shadow: 0 6px 15px black;
}
#lastimage img{
	object-fit: cover;
	width: 100%;
    height: 100%;
}
