.main {
    display: flex;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    align-items: center;
    
}
.center {
    font-size: 1.25rem;
    font-weight: bolder;
    
    border: dashed 2px  rgb(104, 104, 104);
    padding: 3% 4% 4% 3%;
    border-radius: 20px;
    transition: border-color 0.3s ease-in-out;
    text-align: center;
    margin: 0.5rem 0;

    opacity: 0;
    transform: scale(0);

    position: relative;

}
h1 {
    font-weight: bolder;
    display: block;
    cursor: pointer;
    transition: 0.3s ease, transform 0.3s ease;

    opacity: 0;
    transform: scale(0);
}
a {
    display: block;
    text-decoration: none;
    margin: 0.625rem 0;
    color: rgb(11, 57, 195);
    transition: 0.5s ease, transform 0.5s ease;
}
h4 {
    text-decoration: underline;
    cursor: pointer;
    transition: 0.3s ease, transform 0.3s ease;
    margin: 0.625rem 0;
    
    left: 10px;
}
.links {
    /* display: flex;
    flex-direction: column;
    align-items: center; */
}
@media (max-width: 768px) {
    .center {
        font-size: 1rem; 
        padding: 4%; 
        border-radius: 15px; 
    }

    h1 {
        font-size: 1.5rem; 
    }

    a, h4 {
        font-size: 0.9rem; 
        margin: 0.5rem 0;
    }
    .status-dot {
        top: 8px;
        right: 8px;
        width: 7px;
        height: 7px;
    }
    .status-dot::before {
        width: 11px; /* 4px larger than 7px dot */
        height: 11px;
    }

    .status-dot:hover::after {
        font-size: 0.7rem;
        top: -25px;
        right: -8px;
    }
    .mail-icon {
        bottom: 8px;
        right: 8px;
        width: 10px;
        height: 10px;
    }

    .mail-icon::before {
        left: 1.5px;
        width: 7px;
        height: 7px;
    }
}
@media (max-width: 480px) {
    .center {
        font-size: 0.875rem; 
        padding: 5%;
        border-radius: 10px;
        width: 90%; 
    }

    h1 {
        font-size: 1.25rem;
    }

    a, h4 {
        font-size: 0.8rem;
        margin: 0.4rem 0;
    }
    .status-dot {
        top: 6px;
        right: 6px;
        width: 6px;
        height: 6px;
    }
    .status-dot::before {
        width: 10px; /* 4px larger than 6px dot */
        height: 10px;
    }
    .status-dot:hover::after {
        font-size: 0.65rem;
        top: -20px;
        right: -6px;
    }
    .mail-icon {
        bottom: 6px;
        right: 6px;
        width: 8px;
        height: 8px;
    }

    .mail-icon::before {
        left: 1px;
        width: 6px;
        height: 6px;
    }

    .main {
        padding: 0 5%; 
    }
}

