* {
    font-family: 'Open sans',sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h1,
h2,
h3, .poppins {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: unset;
    color: unset;
}

.backgroundImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: -2;
    opacity: 0.9;
    background-color: rgb(0, 0, 0);
}

p {
    font-size: 1.75em;
}

header {
    display: flex;
    flex-direction: row;
    padding:50px;
    gap: 4px;
}

.headerborder {
    position: relative;
    display: flex;
    border-top: 1px solid rgb(199, 126, 62);
    border-bottom: 1px solid rgb(199, 126, 62);
    flex-direction: column;
    align-items: center;
    padding: 40px;
}


header>div:last-child {
    display: flex;
    flex-direction: column;
    padding-top: 90px;

}

header img {
    width: 100%;
    max-width: 200px;
    border-radius: 100%;
    margin-bottom: 50px;
    border: 4px solid rgb(199, 126, 62)
}

header mark {
    padding: 2px 10px;
    border-radius: 5px;
    background-color: rgb(199, 126, 62);
}

body, header, main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 30px;
    gap: 30px;
}

i {
    font-size: 30px;
}

.link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: solid 1px rgb(199, 126, 62);
    padding: 4px 50px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px

}

.background {
    position: absolute;
    inset: 0;
    background: rgb(0, 0, 0);
    opacity: 0.4;
    z-index: -1;
}

.link:hover {
    transition: 0.8s;
    background-color: rgb(199, 126, 62);
}

@media  (max-width: 453px) {
    header {
        flex-direction: column;
    }
}