<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&amp;display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Bebas Neue", sans-serif;
}

body{
    width: 100vw;
    background-color: wheat;
}

body .container2{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

header .container{
    text-align: center;
    
}

h1{
    text-align: center;
}

.content{
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.box-content{
    width: 500px;
    height: 400px;
    border: 1px solid black;
    border-radius: 25px;
    padding: 30px;
    margin: 10px 10px;
    background-color: thistle;
}
.box-content a{
  color: blue;

}

</pre></body></html>