body {
    margin: 0;
    font-family: 'PT Sans', 'sans-serif';
    color: white;
}

.aot {
    background-image: url('./img/header.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

header img {
    width: 100px;
    padding: 15px;
}

header a {
    color: white;
    text-decoration: none;
    margin-left: 16px;
    font-weight: bold;
}

header a:hover {
    color: rgba(180,138,78);
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navIcon {
    height: 24px;
    width: auto;
    margin-left: 16px;
}

.navIcon:hover {
    filter: drop-shadow(0px 0px 3px white);
    cursor: pointer;
}

h1 {
    font-size: 84px;
    margin: 0%;
}

.button {
    background-color: rgba(180,138,78);
    color: white;
    text-decoration: none;
    padding: 16px;
    margin-top: 50px;
    border-radius: 4px;
}

.section-quicklinks {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

.quicklink {
    display: flex;
    flex-direction: column;
    margin: 20px;
    color:rgba(180,138,78);
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    gap: 8px;
}

.quicklink img {
    width: 250px;
    height: 250px;
    object-fit: cover;

}

.section-ticket {
    background-color: #272727;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-ticket img {
    height: 380px;
}

.festival-info {
    padding: 40px;
    height: 280px;
    flex: 1;
}

.festival-info h2 {
    margin: 0px;
    font-weight: 100;
}

.seperator {
    width: 1px;
    background-color: white;
    height: 220px;
    margin-right: 10px;
}

.buyticket {
    margin: 20px;
    display: flex;
    justify-content: center;
}

.section-follow {
    color:rgba(180,138,78);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px;
    text-align: center;
}

.section-follow h1 {
    font-size: 54px;
    margin: 20px;
}

.section-bottom {
    background-image: url(./img/bottom.png);
    background-size: cover;
    background-position: center;
    height: 600px;  
}

footer {
    background-color: black;
    display: flex;
    padding: 80px;
}

.footer-social {
    width: 32px;
    border-radius: 4px;
}

.half-width {
    width: 50%;
}

.fs-medium {
    font-size: 24px;
    font-weight: 700;
}

.footer-center {
    display: flex;
    justify-content: center;
    gap: 40px;
}

input {
    height: 40px;
    border-radius: 4px;
}

input::placeholder {
    color: rgba(0,0,0,0.4);
    padding-left: 10px;
}

.button-footer {
    margin-top: 10px;
    width: 150px;
    border-width: 0px;    
}
