@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: hidden;
}

.navbar {
    background-color: rgb(202, 198, 198);
}

.navbar-brand {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.home {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    margin: 0 auto;
}

.content {
    color: white;
    text-align: center;
    margin: 0%;
}

.content div {
    min-width: 660px;
    min-height: 150px;
}

.content h3 {
    font-family: 'Inconsolata', monospace;
    color: #3d86f3;
}

.content h1 {
    color: white;
    animation: removeHide 0s ease-out 0.8s 1 forwards;
    font-family: "Poppins", sans-serif;
}

.content h2 {
    color: #BAC3CF;
}

.content div::before {
    content: '';
    height: 150px;
    width: 660px;
    background: linear-gradient(to right, #3d86f3 50%, #00000000 50%);
    background-size: 1320px;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    animation: name 1.5s ease-out 0s 1 forwards;
}

.role {
    font-family: 'Inconsolata', monospace;
    color: #3d86f3;
    border-right: 3px solid #3d86f3;
}

.popup {
    display: none;
    position: fixed;
    z-index: 1;
    top: 20%;
    left: 12%;
    border-radius: 8px;
    overflow: auto;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    opacity: 0;
    transform: translateY(-50px);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.popup.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.close-btn {
    color: black;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}