body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../Images/bg.png");
    filter: blur(4px);
    background-size: cover;
    z-index: -1;
}

body.white::before {
    filter: blur(4px) invert(1);
}

.zigzag-border {
    position: relative;
    padding: 10px;
    border-width: 7px;
    border-style: solid;
    border-image: linear-gradient(45deg, #ffffff 25%, transparent 25%) 1;
    display: inline-block;
    margin-right: 10px;
}

.zigzag-border h1 {
    color: #ffffff;
    font-size: 48px;
    margin: 0;
    display: inline-block;
}

#main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 80px);
    text-align: center;
}

h1 {
    font-size: 3em;
    margin: 0;
    padding: 5px 5px 0 5px;
    font-family: Arial, sans-serif;
}

h2 {
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 20px;
    color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    font-size: 40px;
}

p {
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 600px;
    font-family: "Slabo 27px", serif;
}

button {
    background-color: #5f5f5f;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.2em;
    padding: 10px 20px;
    margin: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #878683;
}

@media screen and (max-width: 320px) {
    #main-content {
        height: calc(100vh - 30px);
    }
}

@media screen and (max-width: 375px) {
    #main-content {
        height: calc(100vh - 40px);
    }
}

@media screen and (max-width: 414px) {
    #main-content {
        height: calc(100vh - 50px);
    }
}

@media screen and (max-width: 576px) {
    #main-content {
        height: calc(100vh - 60px);
    }
}

@media screen and (max-width: 768px) {
    .zigzag-border {
        margin-left: 35px;
    }

    .zigzag-border h1 {
        font-size: 45px;
    }

    .zigzag-border {
        padding: 5px;
        border-width: 7px;
    }
}