@tailwind base;
@tailwind components;
@tailwind utilities;

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
/*
 * This is a manifest file that'll be compiled into application.css.erb, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
*{
    font-family: Verdana;
}

/* Navbar */
nav{
    width: 100%;
    height: 50px;
    background-color: transparent;
    line-height: 50px;
    position: fixed;
}
nav ul{
    float: right;
    margin-right: 30px;
}
nav ul li{
    list-style: none;
    display: inline-block;
    transition: .7s all;
    border-radius: 25px 20px 25px 20px;
}
nav ul li:hover{
    background-color: #F28B16;
}
nav ul li *{
    text-decoration: none;
    color: #fff;
    padding: 30px;
}

/* Hero */
.full-hero{
    background-image: url(/assets/minerva_hero-35d374b089301d2dad2428ef567c0436cf38cd1f4435446aca775199e51ab5e0.jpg);
    background-size: cover;
    background-repeat: repeat;
    background-attachment: fixed;
    box-sizing: border-box;
    height: 100vh;
}

.full-hero::after{
    border: 10px solid;
    border-color: #fff transparent transparent;
    bottom: 2vh;
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    transform: translate(-50%, 0);
    width: 0;
}

.hero-content{
    color: #000;
    text-align: center;
    position: relative;
    top: 50%;
    transform: translate(0,-50%);
}
.hero-content h1{
    font-size: 7vh;
    margin-bottom: 0.25em;
    color: #F28B16;
}

.hero-content h2{
    font-size: 5.5vh;
}
.hero-home{
    background-position: top center;
}


