@charset "utf-8";
body {
    background-color: rgba(35,35,35,1.00);
    margin: 0px;
    padding: 25px 0px;
    font-family: 'Montserrat', sans-serif;
    color: rgba(191,151,50,1.00);
}
section {
    width: auto;
    padding: 0px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
nav {
    background-color: rgba(15,15,15,1.00);
    height: 80px;
    width: 100%;
    max-width: 1000px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 40px;
}
.content {
    width: 100%;
    max-width: 1000px;
    display: flex;
    align-items: flex-start;
}
.full {
    overflow-x: hidden;
    overflow-y: hidden;
}

.btn1 {
    background-color: transparent;
    padding: 15px 25px;
    font-family: 'Montserrat';
    color: rgba(221,195,32,1.00);
    border: 2px solid rgba(162,145,38,1.00);
    cursor: pointer;
}
.btn1:hover {
    background-color: rgba(68,63,13,0.50);
}
.btn1:active {
    background-color: rgba(42,39,8,0.60);
}
