html,
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    background: #111;
}

a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    color: #45a049;
}

canvas {
    display: block;
}

.content {
    position: absolute;
    top: 60px;
    left: 200px;
    color: white;
    font-family: Poppins;
    height: 100%;
    box-sizing: border-box;
    width: calc(100% - 400px);
    padding: 40px 90px;
    text-align: left;
    display: flex;
    flex-direction: row;
    gap: 80px;
}

.col-left {
    width: 50%;
}

.col-right {
    width: 50%;
}

.content_title {
    position: absolute;
    top: 0px;
    left: 200px;
    color: white;
    font-family: Poppins;
    height: 100%;
    box-sizing: border-box;
    width: calc(100% - 400px);
    padding: 40px 90px;
    text-align: left;
} 

h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
}

.domain_card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.domain_card_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.nav_left {
    position: absolute;
    top: 0px;
    left: 0px;
    color: white;
    font-family: Poppins;
    border-right: 1px solid white;
    height: 100%;
    box-sizing: border-box;
    width: 200px;
    padding: 20px;
    text-align: center;
}

.nav_right {
    position: absolute;
    top: 0px;
    right: 0px;
    color: white;
    font-family: Poppins;
    border-left: 1px solid white;
    height: 100%;
    box-sizing: border-box;
    width: 200px;
    padding: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form input, form textarea {
    padding: 10px;
    border: 1px solid white;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.5);
    color: #000;
}

form textarea {
    height: 200px;
}

form button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #4CAF50;
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

form button:hover {
    background: #45a049;
}