
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", "sans-serif";
}

body {
    min-height: 100vh;
    background: url(../images/background.jpg);

    background-size: cover;
    background-position: center;
    
}

#Header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: transparent;
    
}

.logo {
    font-size: 2em;
    color: #fff;
    text-decoration: none;
    font-weight: 700;

}

.Navbar a {
    position: relative;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
}

.Navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: .3s;
}

.Navbar a:hover:before {
    width: 100%;
}

#Main {

    margin-top: 88px;
    position: absolute;
    width: 100%;
    height: 750px;
}

#Tiers {
    position: absolute;
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.RectTier {

    position: absolute;
    fill-opacity: 0.5;
    stroke: #fff;


}

.Tiername {
    fill: #fff;
    text-anchor: middle;
    font-family: fantasy !important;
    font-size: 2em;
    font-weight: bold;
    
}

.Checkmark {
    fill: #fff;
    font-weight: bold;
}

.Tierperk {
    fill: #fff;
    text-anchor: middle;
}

.Pricetag {
    fill: #fff;
    text-anchor: middle;
    font-size: 3em;
}

.PricetagNotice {
    fill: gray;
    text-anchor: middle;
    font-size: .8em;
}

.ButtonSelect {

    position: absolute;
    fill-opacity: 0.3;
    stroke: #fff;
}


.ButtonText {
    fill: #fff;
    text-anchor: middle;
}

.RectTier:hover {
    stroke-width: 4;
    stroke: #fff;
    transition: .5s;
}

.ButtonSelect:hover {
    stroke-width: 4;
    stroke: #fff;
    transition: .5s;
}

.Tiername, .Checkmark, .Tierperk, .Pricetag, .ButtonText {
    pointer-events: none;
}
