* {
    margin: 0px;
    padding: 0px;
    font-family: GothicRegular;
}

header {
    background-image: url(../Images/bg.jpg);
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

ul {
    float: right;
    list-style: none;
    margin-top: 25px;
    margin-right: 20px;
}

ul li {
    display: inline-block;
}

ul li a {
    text-decoration: none;
    color: #fff;
    padding: 5px 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    transition: 0.6s ease;

    font-size: 20px;
    font-style: bold;
}

ul li.active a {
    background-color: #fff;
    color: black;
}

ul li a:hover {
    background-color: #fff;
    color: black;
}

.logo img {
    float: left;
    width: 40px;
    height: auto;
}

img.menu{
    float: right;
    margin-right: 10px;
    margin-top: 13px;
}

/* ito ay para lang mag gitna yung header */
/* .main {
    max-width: 1200px;
    margin: auto;
} */

.title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.title h1 {
    color: white;
    font-size: 70px;
    font-family: GothicBold;
    text-align: center;
    letter-spacing: 7px;
}

.button {
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn {
    border: 1px solid white;
    padding: 10px 30px;
    text-decoration: none;
    color: white;
    transition: 0.6s ease;

    border-radius: 6px;
}

.btn:hover {
    background-color: #fff;
    color: black;
}

@font-face {
    font-family: 'GothicBold';
    src: url('../Fonts/GothicA1-ExtraBold.ttf');
}

@font-face {
    font-family: 'GothicRegular';
    src: url('../Fonts/GothicA1-Regular.ttf');
}