* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(180deg, #FF5722, #ffa500);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    /* font-family: "Bebas Neue", sans-serif; */
    font-family: "Poppins", sans-serif;
    font-variant: small-caps;
}

.circle_border {
    width: 40vw;
    height: 40vw;
    border-radius: 20vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border: calc(1vw) solid #FF5722;
}

.circle {
    width: 38vw;
    height: 38vw;
    background-color: #fff;
    border-radius: 20vw;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FF5722;
    border: calc(3vw) solid #ffa500;
    padding: 2vw;
}

.space {
    height: 10px;
}

.circle h1 {
    font-size: calc(10vw);
    font-family: "Bebas Neue", sans-serif;
}

.slogan {
    font-size: calc(4vw);
    text-align: center;
}

.fullScreen {

    border-radius: 3%;
}

.fullScreen img {
    max-width: 60vw;
    box-shadow: 0px 0px 50px #000;
    border-radius: 3%;
}
.copyrights{
    font-weight: bolder;
    font-size: 120%;
}
.privacy,
.privacy a {

    color: #fff;
    /* font-size: calc(1vw); */
    text-align: center;
    text-decoration: none;
}