body {
    background-color: #ff3333;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    cursor: url("cursor.png"), auto;

}

.container {
    background-color: #ffcc00;
    width: 600px;
    margin: 0 auto;
    min-height: 800px;
    padding: 20px;
    position: relative;
}

/* this makes the triangles on the left side */
.container::before {
    content: " ";
    position: absolute;
    left: -60px;
    top: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(to top right, transparent 50%, #ffcc00 50%), 
                linear-gradient(to bottom right, transparent 50%, #ffcc00 50%);
    background-size: 100% 40px;
    background-repeat: repeat-y;
}

/* this makes the triangles on the right side */
.container::after {
    content: " ";
    position: absolute;
    right: -60px;
    top: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(to top left, transparent 50%, #ffcc00 50%), 
                linear-gradient(to bottom left, transparent 50%, #ffcc00 50%);
    background-size: 100% 40px;
    background-repeat: repeat-y;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.nav {
    background-color: white;
    border: 2px solid #999;
    border-radius: 50px;
    padding: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.nav a {
    text-decoration: none;
    color: red;
    font-weight: bold;
    font-size: 20px;
    margin: 0 15px;
}

.nav a:hover {
    text-decoration: underline;
}

.content {
    display: flex;
    gap: 20px;
}

.text {
    flex: 1;
    color: #cc0000;
    font-weight: bold;
    font-size: 18px;
}

.pic {
    flex: 1;
    background-color: white;
    border: 4px solid #ccc;
    text-align: center;
    padding: 5;
}

.pic img {
    width: 100%;
    border: 2px solid black;
}