body {            
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 100vh;
    background-color: #0d6efd;
    font-family: Arial, sans-serif;
    text-align: center;
    color: white;
}

h1{
    
    position: relative;
    display: flex;
    font-size: 36px;
    margin: 0 0 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
p{
    
    position: relative;
    display: flex;
    font-size: 12px;
    margin: 0 0 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 60px;
}

.square {
    width: 150px;
    height: 150px;
    border: 5px solid white;
    position: relative;
    background-color: grey;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.square-text {
    font-size: 20px;
    color: white;
    font-weight: bold;
}

.text {
    position: absolute;
    font-size: 24px;
    color: white;
    font-weight: bold;
    text-align: center;
}
.text-center {
    left: 50%;
    transform: translateX(-50%);
}
.arrows-leftSide {
    position: absolute;
    left: -30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrows-topSide {
    position: absolute;
    top: -40px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.arrows-rightSide {
    position: absolute;
    right: -30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrows-bottomSide {
    position: absolute;
    bottom: -40px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.arrow-l, .arrow-t, .arrow-r, .arrow-b {
    font-size: 24px;
    color: white;
    margin: 5px;
    opacity: 0;
    transition: opacity 0.5s;
}

.arrow-t,.arrow-b {
    font-size: 24px;
    color: white;
    margin:10px;
    opacity: 0;
    transition: opacity 0.5s;
}

#label-container {
    border: 5px solid white;    
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.spin {
    width: 60px;
    height: 60px;
    border: 8px solid #ccc;
    border-top: 8px solid #4CAF50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 40%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
