body {
    background-color: rgb(255, 69, 69);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

.topnav {
    border-radius: 25px;
    height: fit-content;
    display: flex;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);  
    align-items: center;
    padding: 0 10px;
    margin: 50px 0 0 0;
    position: sticky;
    top: 15px;
    z-index: 1000;
}

.topnav li {
    list-style: none;
    color: white;
    font-size: 25px;
    font-weight: bold;
    padding: 12px 14px;
    margin: 0 12px;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
}


.topnav li::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    transition: 0.2s;
    border-radius: 25px;
}

.topnav li:hover::before {
    background: linear-gradient(to bottom, #e8edec, #d2d1d3);
    box-shadow: 0px 3px 20px 0px black;
    transform: scale(1.2);
}

.topnav li a { 
    display: block; 
    color: white; 
    text-decoration: none; 
}

ul.topnav li:hover a {
  color: black;
  font-size: larger;
}

ul.topnav li a.active {
  color: black;
  font-size: larger;
}

.content h1 {
    font-size: 70px;
    color: white;
}

.content {
    margin-top: 40px;
    text-align: center;
}
.content p {
    font-size: 45px;
    padding: 10px;
    margin-left: 25px;
    margin-right: 25px;
    border: 3px solid white;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
}

.content p:hover {
    transform: scale(1.02);
}

.content ul {
    font-size: 50px;
    max-width: 1200px;
    text-align: left;
    margin: 50px;
    color: white;
}

.title {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 5px solid rgb(255, 255, 255);
    display: inline-block;
    width: 800px;
}

.links-section {
    margin: 50px;
    max-width: 800px;
    padding: 20px;
    border: 2px solid white;
    border-radius: 15px;
    background-color: rgba(0,0,0,0.3);
    text-align: center;
}

.links-section h2 {
    font-size: 40px;
    color: white;
}

.links-section ul {
    list-style: none;
    padding: 0;
    margin-top: 0;
}

.links-section ul li {
    margin: 10px 0px;
}

.links-section ul li a {
    color: #fff;
    font-weight: bold;
    font-size: 30px;
    text-decoration: none;
}

.info-section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    margin: 50px;
}

.veyron-img {
    max-width: 800px;
    border-radius: 15px;
    margin: 20px;
}

.veyron-l {
    height: 500px;
    border-radius: 15px;
    aspect-ratio: 16 / 9;
    margin-bottom: 20px;
}

.veyron-perf {
    width: 799px;
    border-radius: 15px;
    aspect-ratio: 16 / 9;
    margin-bottom: 20px;
}

.veyron-dev {
    border-radius: 15px;
    width: 900px;
    display: block;
    margin: 15px auto;
    aspect-ratio: 16 / 9;
}

.features-list li {
    width: 2000px;

}

.feature-link {
    color: white;
    text-decoration: none;
}

.feature-link:hover {
    text-decoration: underline;
}

.spec-list li {
    width: 1900px;
}

.spec-list {
    padding-left: 15px;
    margin-left: 0;
}