@import url('https://fonts.googleapis.com/css2?family=Concert+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,100;1,300&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: rgb(37,58,137);
    background: radial-gradient(circle, rgba(37,58,137,1) 6%, rgba(27,36,91,1) 83%);
    display: flex;
    font-family: 'Concert One', cursive;
    height: 100vh;
    width: 100%;
}

main {
    height: 100vh;
    position: relative;
    width: 100%;
}

.error {
    height: 100%;
    position: relative;
    width: 100%;
}

.error .error-container {
    height: 100%;
    width: 100%;
}

.error .error-container .error-content {
    color: #f1f5f5;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: center;
    text-align: center;
}

.error .error-container .error-content .error-title h1 {
    font-size: 15rem;
    text-shadow: 2px 5px 55px rgba(0, 0, 0, .8);
}

.error .error-container .error-content .error-text p {
    font-size: 26px;
}

.error .error-container .error-content .error-button {
    margin-top: 20px;
}

.error .error-container .error-content .error-button a {
    border: 1px solid #fff;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    padding: 10px 35px;
    text-decoration: none;
    transition: .3s;
}

.error .error-container .error-content .error-button a:hover {
    background: #fff;
    color: rgba(37,58,137,1);
}

.error-bubble {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.error-bubble .error-bubble-container {
    display: flex;
    height: 100%;
    width: 100%;
}

.error-bubble .error-bubble-container .error-bubble-content {
    height: 100%;
    margin: auto;
    position: relative;
    width: 80%;
}

.error-bubble .error-bubble-container .error-bubble-content .error-bubble-item {
    background: rgb(184,36,114);
    background: linear-gradient(360deg, rgba(184,36,114,1) 6%, rgba(223,88,183,1) 83%);
    border-radius: 50%;
    box-shadow: -7px 59px 33px 0px rgba(0,0,0,.3);
    -webkit-box-shadow: -7px 59px 33px 0px rgba(0,0,0,.3);
    -moz-box-shadow: -7px 59px 33px 0px rgba(0,0,0,.3);
    position: absolute;
}

.error-bubble .error-bubble-container .error-bubble-content .error-bubble-item:nth-child(1) {
    top: 50px;
    left: 20px;

    height: 150px;
    width: 150px;
}

.error-bubble .error-bubble-container .error-bubble-content .error-bubble-item:nth-child(2) {
    top: 100px;
    right: 75px;

    height: 200px;
    width: 200px;
}

.error-bubble .error-bubble-container .error-bubble-content .error-bubble-item:nth-child(3) {
    top: 250px;
    right: 350px;

    height: 75px;
    width: 75px;
}

.error-bubble .error-bubble-container .error-bubble-content .error-bubble-item:nth-child(4) {
    bottom: 120px;
    right: 60px;

    height: 100px;
    width: 100px;
}

.error-bubble .error-bubble-container .error-bubble-content .error-bubble-item:nth-child(5) {
    bottom: 160px;
    left: 60px;

    height: 200px;
    width: 200px;
}

.error-bubble .error-bubble-container .error-bubble-content .error-bubble-item:nth-child(6) {
    top: 30px;
    left: 30%;

    height: 90px;
    width: 90px;
}

.error-bubble .error-bubble-container .error-bubble-content .error-bubble-item:nth-child(7) {
    bottom: 50px;
    left: 50%;

    height: 120px;
    width: 120px;
}

.error-bubble .error-bubble-container .error-bubble-content .error-bubble-item:nth-child(8) {
    top: 50%;
    left: 32%;

    height: 50px;
    width: 50px;
}

.error-bubble .error-bubble-container .error-bubble-content .error-bubble-item:nth-child(9) {
    bottom: 20px;
    left: 30%;

    height: 100px;
    width: 100px;
}